]> pd.if.org Git - pdclib/blobdiff - includes/__NULL.h
Moved shared defines and typedefs to individual files.
[pdclib] / includes / __NULL.h
diff --git a/includes/__NULL.h b/includes/__NULL.h
new file mode 100644 (file)
index 0000000..7c8cc77
--- /dev/null
@@ -0,0 +1,16 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// This code is Public Domain. Use, modify, and redistribute at will.
+// ----------------------------------------------------------------------------
+// Definition of NULL shared by locale.h, stddef.h, stdio.h, stdlib.h, 
+// string.h, wchar.h, and time.h
+// ----------------------------------------------------------------------------
+
+#ifndef __NULL_H
+#define __NULL_H __NULL_H
+
+#define NULL 0
+
+#endif // __NULL_H