mirror of
https://github.com/mirror/tinycc.git
synced 2025-02-28 08:10:25 +08:00
win32: guard va_list typedef
This commit is contained in:
parent
c4b7e77bbe
commit
ec4a350620
@ -1,7 +1,10 @@
|
||||
#ifndef _STDARG_H
|
||||
#define _STDARG_H
|
||||
|
||||
#ifndef _VA_LIST
|
||||
#define _VA_LIST
|
||||
typedef char *va_list;
|
||||
#endif
|
||||
|
||||
/* only correct for i386 */
|
||||
#define va_start(ap,last) ap = ((char *)&(last)) + ((sizeof(last)+3)&~3)
|
||||
|
Loading…
Reference in New Issue
Block a user