4 /* This is awful, but really these are compiler intrinsics, so we use the
5 * GNU compiler intrinsics.
9 typedef __builtin_va_list va_list;
10 #define va_start(v,l) __builtin_va_start(v,l)
11 #define va_end(v) __builtin_va_end(v)
12 #define va_arg(v,l) __builtin_va_arg(v,l)
13 #define va_copy(d,s) __builtin_va_copy(d,s)
15 #error "Don't know how to use varargs not on GNUC, sorry."