summaryrefslogtreecommitdiff
path: root/src/stdarg/va_list.c
blob: 3f1e1110de3f6c9d170c333759670b25f5320072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)
*/