]> pd.if.org Git - pdclib/blobdiff - includes/errno.h
Moved the C locale implementation into main code base. None of these are really optio...
[pdclib] / includes / errno.h
diff --git a/includes/errno.h b/includes/errno.h
deleted file mode 100644 (file)
index 873166a..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-// Provides 'errno', the auxiliary error handling of the standard library.
-// ----------------------------------------------------------------------------
-
-#ifndef __ERRNO_H
-#define __ERRNO_H __ERRNO_H
-
-// ----------------------------------------------------------------------------
-// DECLARATIONS
-
-extern int errno;
-
-// ----------------------------------------------------------------------------
-// DEFINES
-
-#define EDOM      1 // domain error
-#define EILSEQ    2 // illegal (multibyte) sequence
-#define ERANGE    3 // range error
-
-#endif // __ERRNO_H