Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / headers / errno.h
1 /*
2  * errno.h - errors
3  */
4 /* $Id: errno.h,v 1.4 1994/06/24 11:40:38 ceriel Exp $ */
5
6 #if     !defined(_ERRNO_H)
7 #define _ERRNO_H
8
9 #include        <sys/errno.h>
10
11 /* The standard requires the next two definitions. If they are also in
12  * <sys/errno.h>, their values should be equal. The <sys/errno.h> supplied
13  * with the compiler doesn't contain them.
14  */
15 #define EDOM            33      /* math arg out of domain of func */
16 #define ERANGE          34      /* math result not representable */
17
18 extern int errno;               /* error number */
19
20 #endif  /* _ERRNO_H */