X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Ferrno.h;h=2ffed5373e1e640274d9c4e5b0d2dec9ec1427e0;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=e85d3024b670f3dd31f750c1d08e23b0228a3e72;hpb=70f1c6f7c9d515ef426da68973511f46de57005a;p=pdclib diff --git a/includes/errno.h b/includes/errno.h index e85d302..2ffed53 100644 --- a/includes/errno.h +++ b/includes/errno.h @@ -1,27 +1,18 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- -// Errors -// ---------------------------------------------------------------------------- +/* Errors -#ifndef __ERRNO_H -#define __ERRNO_H __ERRNO_H + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ -// TODO: Documentation +#ifndef _PDCLIB_ERRNO_H +#define _PDCLIB_ERRNO_H _PDCLIB_ERRNO_H -// ---------------------------------------------------------------------------- -// DECLARATIONS +#include "_PDCLIB_int.h" -extern int errno; +#define errno (*_PDCLIB_errno_func()) -// ---------------------------------------------------------------------------- -// DEFINES +#define ERANGE _PDCLIB_ERANGE +#define EDOM _PDCLIB_EDOM -#define EDOM 1 // domain error -#define EILSEQ 2 // illegal (multibyte) sequence -#define ERANGE 3 // range error +#endif -#endif // __ERRNO_H