Home | History | Annotate | Download | only in Support
      1 //===- SystemUtils.cpp ----------------------------------------------------===//
      2 //
      3 //                     The MCLinker Project
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 #include "mcld/Config/Config.h"
     10 #include <mcld/Support/SystemUtils.h>
     11 
     12 using namespace mcld::sys;
     13 
     14 //===----------------------------------------------------------------------===//
     15 // Non-member functions
     16 #if defined(MCLD_ON_UNIX)
     17 #include "Unix/System.inc"
     18 #endif
     19 #if defined(MCLD_ON_WIN32)
     20 #include "Windows/System.inc"
     21 #endif
     22