aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdclib/include/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pdclib/include/stddef.h')
-rw-r--r--src/pdclib/include/stddef.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/pdclib/include/stddef.h b/src/pdclib/include/stddef.h
new file mode 100644
index 0000000..7cba7c0
--- /dev/null
+++ b/src/pdclib/include/stddef.h
@@ -0,0 +1,28 @@
+/* Common definitions <stddef.h>
+
+ This file is part of the Public Domain C Library (PDCLib).
+ Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#ifndef _PDCLIB_STDDEF_H
+#define _PDCLIB_STDDEF_H _PDCLIB_STDDEF_H
+
+#include "pdclib/_PDCLIB_int.h"
+
+typedef _PDCLIB_ptrdiff_t ptrdiff_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 )
+
+#endif