1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-22 19:54:57 +08:00

fix for mingw "alloca" being redefined

This commit is contained in:
itzandroidtab 2021-08-01 15:18:39 +02:00
parent 33e5a31ab7
commit 974146f944

View File

@ -5,7 +5,7 @@
# include <alloca.h>
#endif
#if defined (__MINGW32__)
#if defined (__MINGW32__) && !defined(alloca)
# define alloca __builtin_alloca
#endif