root/include/std/stdarg.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef STDARG_H
   2 #define STDARG_H
   3 
   4 // For building Lua
   5 #define va_list __builtin_va_list
   6 #define va_start __builtin_va_start
   7 #define va_arg __builtin_va_arg
   8 #define va_end __builtin_va_end
   9 
  10 #endif

/* [<][>][^][v][top][bottom][index][help] */