2014-06-11 21:05:50 +02:00
|
|
|
//===-- WindowsError.h - Support for mapping windows errors to posix-------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 18:26:38 +02:00
|
|
|
#ifndef LLVM_SUPPORT_WINDOWSERROR_H
|
|
|
|
#define LLVM_SUPPORT_WINDOWSERROR_H
|
2014-06-11 21:05:50 +02:00
|
|
|
|
|
|
|
#include <system_error>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
std::error_code mapWindowsError(unsigned EV);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|