| author | |
| committer | |
| log | f4ca3482f1954eb0bdd0c378206d3a7b8e178f55 |
| tree | 7395779c4bb93cc677f0744e269af3d55f8f8ed6 |
| parent | c7053bea204f87fe1c8b28ec97b27003a24dcafc |
1 files changed, 4 insertions(+), 0 deletions(-)
c_headers/stdarg.h+4| ... | ... | @@ -26,10 +26,14 @@ |
| 26 | 26 | #ifndef __STDARG_H |
| 27 | 27 | #define __STDARG_H |
| 28 | 28 | |
| 29 | /* zig: added because macos _va_list.h was duplicately defining va_list | |
| 30 | */ | |
| 29 | 31 | #ifndef _VA_LIST |
| 32 | #ifndef _VA_LIST_T | |
| 30 | 33 | typedef __builtin_va_list va_list; |
| 31 | 34 | #define _VA_LIST |
| 32 | 35 | #endif |
| 36 | #endif | |
| 33 | 37 | #define va_start(ap, param) __builtin_va_start(ap, param) |
| 34 | 38 | #define va_end(ap) __builtin_va_end(ap) |
| 35 | 39 | #define va_arg(ap, type) __builtin_va_arg(ap, type) |