CS318 - Pintos
Pintos source browser for JHU CS318 course
Macros | Typedefs
stdarg.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define va_start(LIST, ARG)   __builtin_va_start (LIST, ARG)
 
#define va_end(LIST)   __builtin_va_end (LIST)
 
#define va_arg(LIST, TYPE)   __builtin_va_arg (LIST, TYPE)
 
#define va_copy(DST, SRC)   __builtin_va_copy (DST, SRC)
 lib/stdarg.h More...
 

Typedefs

typedef __builtin_va_list va_list
 GCC has <stdarg.h> functionality as built-ins, so all we need is to use it. More...
 

Macro Definition Documentation

◆ va_arg

#define va_arg (   LIST,
  TYPE 
)    __builtin_va_arg (LIST, TYPE)

Definition at line 11 of file stdarg.h.

◆ va_copy

#define va_copy (   DST,
  SRC 
)    __builtin_va_copy (DST, SRC)

lib/stdarg.h

Definition at line 12 of file stdarg.h.

◆ va_end

#define va_end (   LIST)    __builtin_va_end (LIST)

Definition at line 10 of file stdarg.h.

◆ va_start

#define va_start (   LIST,
  ARG 
)    __builtin_va_start (LIST, ARG)

Definition at line 9 of file stdarg.h.

Typedef Documentation

◆ va_list

typedef __builtin_va_list va_list

GCC has <stdarg.h> functionality as built-ins, so all we need is to use it.

Definition at line 7 of file stdarg.h.