SyterKit 0.4.0.x
SyterKit is a bare-metal framework
Loading...
Searching...
No Matches
stdarg.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0+ */
2
3#ifndef __STDARG_H__
4#define __STDARG_H__
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10typedef __builtin_va_list va_list;
31#define va_start(v, l) __builtin_va_start(v, l)
32
45#define va_arg(v, l) __builtin_va_arg(v, l)
46
56#define va_end(v) __builtin_va_end(v)
57
68#define va_copy(d, s) __builtin_va_copy(d, s)
69
70#ifdef __cplusplus
71}
72#endif
73
74#endif /* __STDARG_H__ */
__builtin_va_list va_list
Definition stdarg.h:4