summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/ultrix-4.2/__stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'mit-pthreads/machdep/ultrix-4.2/__stdlib.h')
-rwxr-xr-xmit-pthreads/machdep/ultrix-4.2/__stdlib.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/mit-pthreads/machdep/ultrix-4.2/__stdlib.h b/mit-pthreads/machdep/ultrix-4.2/__stdlib.h
new file mode 100755
index 00000000000..e2e52cc41c9
--- /dev/null
+++ b/mit-pthreads/machdep/ultrix-4.2/__stdlib.h
@@ -0,0 +1,21 @@
+
+#ifndef _SYS___STDLIB_H_
+#define _SYS___STDLIB_H_
+
+#include <ansi_compat.h>
+
+#ifndef _SIZE_T_
+#define _SIZE_T_
+typedef unsigned int size_t;
+#endif
+
+#ifndef _WCHAR_T_
+#define _WCHAR_T_
+typedef unsigned int wchar_t;
+#endif
+
+#ifndef NULL
+#define NULL 0
+#endif
+
+#endif