Xen Test Framework
stdarg.h
Go to the documentation of this file.
1
6#ifndef STDARG_H
7#define STDARG_H
8
9typedef __builtin_va_list va_list;
10#define va_start(v, l) __builtin_va_start(v, l)
11#define va_end(v) __builtin_va_end(v)
12#define va_arg(v, l) __builtin_va_arg(v, l)
13#define va_copy(d, s) __builtin_va_copy(d, s)
14
15#endif /* STDARG_H */
16
17/*
18 * Local variables:
19 * mode: C
20 * c-file-style: "BSD"
21 * c-basic-offset: 4
22 * tab-width: 4
23 * indent-tabs-mode: nil
24 * End:
25 */
__builtin_va_list va_list
Definition: stdarg.h:9