]> pd.if.org Git - pdclib.old/blobdiff - includes/stddef.h
Porting current working set from CVS.
[pdclib.old] / includes / stddef.h
index d0577d0af36121bf83b5e71c54ebac2bbe3689e1..e335dd07d3b742f7fc69e6c03606a81beebe094e 100644 (file)
 #include <_PDCLIB_config.h>
 #endif
 
+#ifndef _PDCLIB_INT_H
+#define _PDCLIB_INT_H _PDCLIB_INT_H
+#include <_PDCLIB_int.h>
+#endif
+
 typedef _PDCLIB_ptrdiff_t ptrdiff_t;
-typedef _PDCLIB_size_t    size_t;
+
+#ifndef _PDCLIB_SIZE_T_DEFINED
+#define _PDCLIB_SIZE_T_DEFINED _PDCLIB_SIZE_T_DEFINED
+typedef _PDCLIB_size_t size_t;
+#endif
+
 typedef _PDCLIB_wchar_t   wchar_t;
 
+#ifndef _PDCLIB_NULL_DEFINED
+#define _PDCLIB_NULL_DEFINED _PDCLIB_NULL_DEFINED
 #define NULL _PDCLIB_NULL
+#endif
 
 #define offsetof( type, member ) _PDCLIB_offsetof( type, member )