xref: /rk3399_ARM-atf/include/lib/libc/stdarg.h (revision 27989a8e34a44ff8e6a2e5b011123a09fd8a82c7)
1 /*
2  * Copyright (c) 2012-2017 Roberto E. Vargas Caballero
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _STDARG_H
8 #define _STDARG_H
9 
10 #define va_list __builtin_va_list
11 #define va_start(ap, last) __builtin_va_start(ap, last)
12 #define va_end(ap) __builtin_va_end(ap)
13 #define va_copy(to, from) __builtin_va_copy(to, from)
14 #define va_arg(to, type) __builtin_va_arg(to, type)
15 
16 #endif
17