]> pd.if.org Git - pdclib/blob - includes/errno.h
Started out on v0.6.
[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
12 #ifndef _PDCLIB_INT_H
13 #define _PDCLIB_INT_H _PDCLIB_INT_H
14 #include <_PDCLIB_int.h>
15 #endif
16
17 #define errno (*_PDCLIB_errno_func())
18
19 #define ERANGE _PDCLIB_ERANGE
20 #define EDOM _PDCLIB_EDOM
21
22 #endif
23