[fix] re #193 workaround for <stdarg.h> missing in amalgamated file

This commit is contained in:
Joao Paulo Magalhaes
2022-01-20 00:11:10 +00:00
parent d0e2b17280
commit 26a68a10fa

View File

@@ -31,6 +31,11 @@ c4core_def_code = f""" // propagate defines to c4core
#if defined(RYML_SHARED) && !defined(C4CORE_SHARED)
#define C4CORE_SHARED
#endif
// workaround for include removal while amalgamating
// resulting in <stdarg.h> missing in arm-none-eabi-g++
// https://github.com/biojppm/rapidyaml/issues/193
#include <stdarg.h>
"""