summaryrefslogtreecommitdiff
path: root/LibC/stdarg.h
blob: c58efc85fa0b6782c65c35f3fc7ef4e8e7c7102f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <sys/cdefs.h>

__BEGIN_DECLS

typedef __builtin_va_list va_list;

#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)

__END_DECLS