summaryrefslogtreecommitdiff
path: root/src/stdarg/va_list.c
blob: 4e571669c74ad0f93172bb3bc304c47e1797b876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdarg.h>

/** variable length argument list **/

typedef __builtin_va_list                                               va_list;

/***
holds the information necessary for making calls to FUNCTION(va_start),
FUNCTION(va_copy), FUNCTION(va_arg), and FUNCTION(va_end).
***/

/*
STDC(1)
*/