lenochka/kernel/va_list.h
2019-03-29 00:27:42 +02:00

13 lines
174 B
C

#ifndef __VA_LIST_H
#define __VA_LIST_H
#include "os.h"
typedef struct {
u64 args[6];
} va_list;
extern void va_start(va_list*);
extern u64 va_arg(va_list*,u64);
#endif