mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-27 06:10:06 +08:00
win32: _mingw.h: do not undef NULL
Not wise if stddef.h was already included. This is related to commit
3aa26a794e
Instead hack stddef.h to have identical definition and thus
avoid the issue mentionned there.
This commit is contained in:
parent
6b6eea60f3
commit
b89793d10a
@ -20,7 +20,7 @@ typedef unsigned int uint32_t;
|
||||
typedef unsigned long long int uint64_t;
|
||||
#endif
|
||||
|
||||
#define NULL ((void *)0)
|
||||
#define NULL ((void*)0)
|
||||
#define offsetof(type, field) ((size_t)&((type *)0)->field)
|
||||
|
||||
void *alloca(size_t size);
|
||||
|
@ -19,7 +19,6 @@
|
||||
#define __MINGW_H
|
||||
|
||||
/* some winapi files define these before including _mingw.h --> */
|
||||
#undef NULL
|
||||
#undef __cdecl
|
||||
#undef _X86_
|
||||
#undef WIN32
|
||||
|
Loading…
Reference in New Issue
Block a user