diff options
| author | grischka <grischka> | 2013-01-14 18:14:00 +0100 |
|---|---|---|
| committer | grischka <grischka> | 2013-01-14 18:41:36 +0100 |
| commit | 2daf8b96a82e51b719b6585ed2ba2719c682ee40 (patch) | |
| tree | 3233a53e993d5ac9b42550c6917f4d209825d914 /win32/include/stddef.h | |
| parent | f7b417723ed6875684b3591845e93ae1f49813d3 (diff) | |
| download | tinycc-2daf8b96a82e51b719b6585ed2ba2719c682ee40.tar.gz tinycc-2daf8b96a82e51b719b6585ed2ba2719c682ee40.tar.bz2 | |
Revert mistake in "win32: malloc.h: fix win32 ... _STATIC_ASSERT"
from commit fc574f14984d11f1ead50560d1bdc5ae0eaf6d8d.
The files from include are copied to win32/include with make
install or build-tcc.bat.
Diffstat (limited to 'win32/include/stddef.h')
| -rw-r--r-- | win32/include/stddef.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/win32/include/stddef.h b/win32/include/stddef.h deleted file mode 100644 index c5dd13c..0000000 --- a/win32/include/stddef.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef _STDDEF_H -#define _STDDEF_H - -typedef __SIZE_TYPE__ size_t; -typedef __PTRDIFF_TYPE__ ssize_t; -typedef __WCHAR_TYPE__ wchar_t; -typedef __PTRDIFF_TYPE__ ptrdiff_t; -typedef __PTRDIFF_TYPE__ intptr_t; -typedef __SIZE_TYPE__ uintptr_t; - -#ifndef __int8_t_defined -#define __int8_t_defined -typedef signed char int8_t; -typedef signed short int int16_t; -typedef signed int int32_t; -typedef signed long long int int64_t; -typedef unsigned char uint8_t; -typedef unsigned short int uint16_t; -typedef unsigned int uint32_t; -typedef unsigned long long int uint64_t; -#endif - -#define NULL ((void *)0) -#define offsetof(type, field) ((size_t)&((type *)0)->field) - -void *alloca(size_t size); - -#endif |
