1// -*- C++ -*-
2//===-------------------------- cerrno ------------------------------------===//
3//
4//                     The LLVM Compiler Infrastructure
5//
6// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_CERRNO
12#define _LIBCPP_CERRNO
13
14/*
15    cerrno synopsis
16
17Macros:
18
19    EDOM
20    EILSEQ  // C99
21    ERANGE
22    errno
23
24*/
25
26#include <__config>
27#include <errno.h>
28
29#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
30#pragma GCC system_header
31#endif
32
33#endif  // _LIBCPP_CERRNO
34