shithub: scc

ref: e01986d6087e1264c1865596d7fe02cadbec6296
dir: /libc/include/amd64-sysv/stdarg.h/

View raw version
/* See LICENSE file for copyright and license details. */
#ifndef _STDARG_H_
#define _STDARG_H_

typedef struct {
    unsigned gp_offset;
    unsigned fp_offset;
    void *overflow_arg_area;
    void *reg_save_area;
} __va_elem;

typedef __va_elem va_list[1];

#define va_start(X, Y) __builtin_va_start((X), (Y))
#define va_end(X) (X)

int vfprintf(FILE *stream, const char *format, va_list ap);

#endif