mescc: Mes C Library: vfprintf: Support --with-system-libc.

* include/stdarg.h (va_arg8)[SYSTEM_LIBC]: Define.
This commit is contained in:
Jan Nieuwenhuizen 2019-11-23 21:37:57 +01:00
parent 2673d28e50
commit 594b2859b1
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@
#if SYSTEM_LIBC
#undef __MES_STDARG_H
#include_next <stdarg.h>
#define va_arg8(ap, type) va_arg(ap, type)
#else // ! SYSTEM_LIBC
#include <sys/types.h>