]> pd.if.org Git - pdclib/blobdiff - includes/stddef.h
Forgot the header guard on string.h. Bumped release date in Readme.txt.
[pdclib] / includes / stddef.h
diff --git a/includes/stddef.h b/includes/stddef.h
deleted file mode 100644 (file)
index d72ca71..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-// TODO
-// ----------------------------------------------------------------------------
-
-#ifndef __STDDEF_H
-#define __STDDEF_H __STDDEF_H
-
-// ----------------------------------------------------------------------------
-// MACROS
-
-#define NULL  0
-#define offsetof( s-type, mbr ) // TODO
-
-// ----------------------------------------------------------------------------
-// TYPEDEFS
-
-typedef ptrdiff_t; // TODO
-typedef size_t;    // TODO
-
-#ifndef __cplusplus
-typedef wchar_t;
-#endif // __cplusplus
-
-#endif // __STDDEF_H