blob: a7ec15f1239e3b31efc4e8ed7dba1c589afe2020 [file] [log] [blame]
//===- System.inc ---------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <cstring>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
namespace mcld{
namespace sys{
char *strerror(int errnum)
{
return std::strerror(errnum);
}
} // namespace of sys
} // namespace of mcld