blu_os
Loading...
Searching...
No Matches
stdarg.h
Go to the documentation of this file.
1//
2// Created by dylan on 15/07/2026.
3//
4
5#ifndef BLU_OS_STDARG_H
6#define BLU_OS_STDARG_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
16
17typedef __builtin_va_list va_list;
18#define va_start(ap, last) __builtin_va_start(ap, last)
19#define va_arg(ap, type) __builtin_va_arg(ap, type)
20#define va_end(ap) __builtin_va_end(ap)
21#define va_copy(dest, src) __builtin_va_copy(dest, src)
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif //BLU_OS_STDARG_H