1
0
forked from GitHub/gf-core

redefine alloca as _alloca for VC++

This commit is contained in:
Krasimir Angelov
2023-01-25 20:32:12 +01:00
parent 3bc492ec69
commit 82683bd1a5

View File

@@ -38,4 +38,8 @@ void FreePgfPrintContext(PgfPrintContext *ctxt);
extern PgfUnmarshaller unmarshaller;
extern PgfMarshaller marshaller;
#if defined(_MSC_VER)
#define alloca _alloca
#endif
#endif // PYPGF_FFI_H_