]> pd.if.org Git - pdclib/blob - includes/errno.h
Removed the header include guard 'optimization'.
[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 #include <_PDCLIB_int.h>
13
14 #define errno (*_PDCLIB_errno_func())
15
16 #define ERANGE _PDCLIB_ERANGE
17 #define EDOM _PDCLIB_EDOM
18
19 #endif
20