blob: 185ba7bcecf9710ff57166b931bc4afab63a00b0 [file] [log] [blame]
Howard Hinnant3e519522010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- algorithm ---------------------------------===//
3//
Howard Hinnant5b08a8a2010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnant3e519522010-05-11 19:42:16 +00005//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11// test <errno.h>
12
13#include <errno.h>
14
15#ifndef EDOM
16#error EDOM not defined
17#endif
18
19#ifndef EILSEQ
20#error EILSEQ not defined
21#endif
22
23#ifndef ERANGE
24#error ERANGE not defined
25#endif
26
27#ifndef errno
28#error errno not defined
29#endif
30
31int main()
32{
33}