[liba] Support for variadic functions (va_arg)

Change-Id: Ic4ea2bce521ad8149198433afe74214018998afc
This commit is contained in:
Romain Goyet
2017-07-30 15:20:55 +02:00
committed by Romain Goyet
parent 878d86df71
commit 1972b30a77

9
liba/include/stdarg.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef LIBA_STDARG_H
#define LIBA_STDARG_H
#define va_arg __builtin_va_arg
#define va_end __builtin_va_end
#define va_list __builtin_va_list
#define va_start __builtin_va_start
#endif