scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

stdarg.h (281B)


      1 #ifndef _STDARG_H
      2 #define _STDARG_H
      3 
      4 #define va_list __builtin_va_list
      5 #define va_start(ap, last) __builtin_va_start(ap, last)
      6 #define va_end(ap) __builtin_va_end(ap)
      7 #define va_copy(to, from) __builtin_va_copy(to, from)
      8 #define va_arg(to, type) __builtin_va_arg(to, type)
      9 
     10 #endif