1/*
2 * Copyright 2014, General Dynamics C4 Systems
3 *
4 * This software may be distributed and modified according to the terms of
5 * the GNU General Public License version 2. Note that NO WARRANTY is provided.
6 * See "LICENSE_GPLv2.txt" for details.
7 *
8 * @TAG(GD_GPL)
9 */
10
11#ifndef __STDARG_H
12#define __STDARG_H
13
14#define va_start(v,l) __builtin_va_start(v,l)
15#define va_end(v) __builtin_va_end(v)
16#define va_arg(v,l) __builtin_va_arg(v,l)
17typedef __builtin_va_list va_list;
18
19#endif
20