blob: 21b1329b13168b38b99b2f4ecc7242f75bdfba3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdarg.h>
typedef __builtin_va_list va_list;
/** variable length argument list **/
/***
holds the information necessary for making calls to FUNCTION(va_start),
FUNCTION(va_copy), FUNCTION(va_arg), and FUNCTION(va_end).
***/
/*
STDC(1)
*/
|