Xen Test Framework
Macros | Typedefs
stdarg.h File Reference

Local subset of C's stdarg.h. More...

+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define va_start(v, l)   __builtin_va_start(v, l)
 
#define va_end(v)   __builtin_va_end(v)
 
#define va_arg(v, l)   __builtin_va_arg(v, l)
 
#define va_copy(d, s)   __builtin_va_copy(d, s)
 

Typedefs

typedef __builtin_va_list va_list
 

Detailed Description

Local subset of C's stdarg.h.

Definition in file stdarg.h.

Macro Definition Documentation

◆ va_start

#define va_start (   v,
 
)    __builtin_va_start(v, l)

Definition at line 10 of file stdarg.h.

◆ va_end

#define va_end (   v)    __builtin_va_end(v)

Definition at line 11 of file stdarg.h.

◆ va_arg

#define va_arg (   v,
 
)    __builtin_va_arg(v, l)

Definition at line 12 of file stdarg.h.

◆ va_copy

#define va_copy (   d,
 
)    __builtin_va_copy(d, s)

Definition at line 13 of file stdarg.h.

Typedef Documentation

◆ va_list

typedef __builtin_va_list va_list

Definition at line 9 of file stdarg.h.