diff options
| author | grischka <grischka> | 2009-05-16 22:30:13 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2009-05-16 22:30:13 +0200 |
| commit | 110a4edc154f6fb73ef3d312630455f68641123f (patch) | |
| tree | 341bfb7efbeacd9cf78ae351d2ed931df7f03d08 /win32/include | |
| parent | 68310299b67bef763ba1622dac2aec534e096bf1 (diff) | |
| download | tinycc-110a4edc154f6fb73ef3d312630455f68641123f.tar.gz tinycc-110a4edc154f6fb73ef3d312630455f68641123f.tar.bz2 | |
drop alloca #define
(Because GNU's alloca.h unconditionally #undef's alloca)
Also, remove gcc specific sections in headers. and
instead change tests such that gcc does not use them.
Diffstat (limited to 'win32/include')
| -rw-r--r-- | win32/include/stddef.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/win32/include/stddef.h b/win32/include/stddef.h index 9965f89..6e4e2c8 100644 --- a/win32/include/stddef.h +++ b/win32/include/stddef.h @@ -18,9 +18,6 @@ typedef int int32_t; typedef long long int int64_t; #endif -#ifdef __i386__ -void *_alloca(size_t); -#define alloca _alloca -#endif +void *alloca(size_t); #endif |
