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/Support/SystemUtils.h>
10
11using namespace mcld::sys;
12
13//===----------------------------------------------------------------------===//
14// Non-member functions
15#if defined(MCLD_ON_UNIX)
16#include "Unix/System.inc"
17#endif
18#if defined(MCLD_ON_WIN32)
19#include "Windows/System.inc"
20#endif
21