]> pd.if.org Git - pdclib/blobdiff - includes/errno.h
Started out on v0.6.
[pdclib] / includes / errno.h
index 0569284da550613d2501614a804705919c517bf1..90c61db1fbf9dfda207aabe1b2129f3d9729faf8 100644 (file)
@@ -1,25 +1,23 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-// Errors
-// ----------------------------------------------------------------------------
+/* $Id$ */
 
-#ifndef __ERRNO_H
-#define __ERRNO_H __ERRNO_H
+/* 7.5 Errors <errno.h>
 
-// ----------------------------------------------------------------------------
-// DECLARATIONS
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
 
-extern int errno;
+#ifndef _PDCLIB_ERRNO_H
+#define _PDCLIB_ERRNO_H _PDCLIB_ERRNO_H
 
-// ----------------------------------------------------------------------------
-// DEFINES
+#ifndef _PDCLIB_INT_H
+#define _PDCLIB_INT_H _PDCLIB_INT_H
+#include <_PDCLIB_int.h>
+#endif
 
-#define EDOM      1 // domain error
-#define EILSEQ    2 // illegal (multibyte) sequence
-#define ERANGE    3 // range error
+#define errno (*_PDCLIB_errno_func())
+
+#define ERANGE _PDCLIB_ERANGE
+#define EDOM _PDCLIB_EDOM
+
+#endif
 
-#endif // __ERRNO_H