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 //===----------------------------------------------------------------------===// 13 // Non-member functions 14 #if defined(MCLD_ON_UNIX) 15 #include "Unix/System.inc" 16 #endif 17 #if defined(MCLD_ON_WIN32) 18 #include "Windows/System.inc" 19 #endif 20