summary refs log tree commit diff stats
path: root/tinyc/include/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'tinyc/include/stddef.h')
-rwxr-xr-xtinyc/include/stddef.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/tinyc/include/stddef.h b/tinyc/include/stddef.h
deleted file mode 100755
index aef5b3923..000000000
--- a/tinyc/include/stddef.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef _STDDEF_H
-#define _STDDEF_H
-
-#define NULL ((void *)0)
-typedef __SIZE_TYPE__ size_t;
-typedef __WCHAR_TYPE__ wchar_t;
-typedef __PTRDIFF_TYPE__ ptrdiff_t;
-#define offsetof(type, field) ((size_t) &((type *)0)->field)
-
-#ifndef __int8_t_defined
-#define __int8_t_defined
-typedef char int8_t;
-typedef short int int16_t;
-typedef int int32_t;
-typedef long long int int64_t;
-#endif
-
-void *alloca(size_t size);
-
-#endif