X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Ferrno.h;h=b4c123d24684a3bb0abecfb1ffc06757635bacea;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=0569284da550613d2501614a804705919c517bf1;hpb=ac3f809c3c10347c110fac3db93af0954eda98bb;p=pdclib diff --git a/includes/errno.h b/includes/errno.h index 0569284..b4c123d 100644 --- a/includes/errno.h +++ b/includes/errno.h @@ -1,25 +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. +*/ -// ---------------------------------------------------------------------------- -// DECLARATIONS +#ifndef _PDCLIB_ERRNO_H +#define _PDCLIB_ERRNO_H _PDCLIB_ERRNO_H -extern int errno; +#include <_PDCLIB_int.h> -// ---------------------------------------------------------------------------- -// DEFINES +#define errno (*_PDCLIB_errno_func()) -#define EDOM 1 // domain error -#define EILSEQ 2 // illegal (multibyte) sequence -#define ERANGE 3 // range error +#define ERANGE _PDCLIB_ERANGE +#define EDOM _PDCLIB_EDOM + +#endif -#endif // __ERRNO_H