]> pd.if.org Git - pdclib/blob - includes/errno.h
039368c8f53ec2878fbaf0d151fe164e9f7f4af5
[pdclib] / includes / errno.h
1 /* $Id$ */
2
3 /* 7.5 Errors <errno.h>
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #ifndef _PDCLIB_ERRNO_H
10 #define _PDCLIB_ERRNO_H _PDCLIB_ERRNO_H
11 #include <_PDCLIB_int.h>
12 _PDCLIB_BEGIN_EXTERN_C
13
14 #define errno (*_PDCLIB_errno_func())
15
16 #define ERANGE _PDCLIB_ERANGE
17 #define EDOM _PDCLIB_EDOM
18
19 _PDCLIB_END_EXTERN_C
20 #endif
21