//===- System.inc ---------------------------------------------------------===// // // The MCLinker Project // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #include #include #include #include namespace mcld{ namespace sys{ char *strerror(int errnum) { return std::strerror(errnum); } } // namespace of sys } // namespace of mcld