]> pd.if.org Git - pdclib/blob - includes/errno.h
e85d3024b670f3dd31f750c1d08e23b0228a3e72
[pdclib] / includes / errno.h
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7 // Errors
8 // ----------------------------------------------------------------------------
9
10 #ifndef __ERRNO_H
11 #define __ERRNO_H __ERRNO_H
12
13 // TODO: Documentation
14
15 // ----------------------------------------------------------------------------
16 // DECLARATIONS
17
18 extern int errno;
19
20 // ----------------------------------------------------------------------------
21 // DEFINES
22
23 #define EDOM      1 // domain error
24 #define EILSEQ    2 // illegal (multibyte) sequence
25 #define ERANGE    3 // range error
26
27 #endif // __ERRNO_H