]> pd.if.org Git - pdclib/blobdiff - includes/__size_t.h
Moved shared defines and typedefs to individual files.
[pdclib] / includes / __size_t.h
diff --git a/includes/__size_t.h b/includes/__size_t.h
new file mode 100644 (file)
index 0000000..50d7d33
--- /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.
+// ----------------------------------------------------------------------------
+// size_t typedef shared by stddef.h, stdio.h, stdlib.h, string.h, time.h, and
+// wchar.h
+// ----------------------------------------------------------------------------
+
+#ifndef __SIZE_T_H
+#define __SIZE_T_H __SIZE_T_H
+
+typedef size_t; // TODO - personality?
+
+#endif // __SIZE_T_H