]> git.proxmox.com Git - rustc.git/blame - src/llvm/include/llvm/Support/WindowsError.h
Imported Upstream version 1.0.0+dfsg1
[rustc.git] / src / llvm / include / llvm / Support / WindowsError.h
CommitLineData
1a4d82fc 1//===-- WindowsError.h - Support for mapping windows errors to posix-------===//
223e47cc
LB
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
1a4d82fc
JJ
10#ifndef LLVM_SUPPORT_WINDOWSERROR_H
11#define LLVM_SUPPORT_WINDOWSERROR_H
223e47cc 12
1a4d82fc 13#include <system_error>
223e47cc 14
1a4d82fc
JJ
15namespace llvm {
16std::error_code mapWindowsError(unsigned EV);
223e47cc
LB
17}
18
19#endif