Changes in uspace/lib/libc/include/stdarg.h [6ab8697:5d4e90f0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/stdarg.h
r6ab8697 r5d4e90f0 37 37 38 38 #include <sys/types.h> 39 #include <libarch/stackarg.h> 40 41 #ifndef __VARARGS_DEFINED 42 # define __VARARGS_DEFINED 39 43 40 44 typedef __builtin_va_list va_list; 41 45 42 #define va_start(ap, last) __builtin_va_start(ap, last) 43 #define va_arg(ap, type) __builtin_va_arg(ap, type) 44 #define va_end(ap) __builtin_va_end(ap) 46 # define va_start(ap, last) __builtin_va_start(ap, last) 47 # define va_arg(ap, type) __builtin_va_arg(ap, type) 48 # define va_end(ap) __builtin_va_end(ap) 49 50 # endif 45 51 46 52 #endif
Note:
See TracChangeset
for help on using the changeset viewer.