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