ports/math/fxt/files/patch-src-fxtalloca.h
Po-Chuan Hsieh 0a6959119f
math/fxt: Update to 2022.04.13
- Update MASTER_SITES
- Convert REINPLACE_CMD to patch file
- Update WWW
- Take maintainership
2022-04-18 07:58:03 +08:00

13 lines
357 B
C

--- src/fxtalloca.h.orig 2021-10-28 13:13:12 UTC
+++ src/fxtalloca.h
@@ -16,8 +16,8 @@
#undef ALLOCA
#ifdef FORCE_ALLOCA_H
-#include <alloca.h>
-//#include <stdlib.h> // for BSD
+//#include <alloca.h>
+#include <stdlib.h> // for BSD
#define ALLOCA(Type, v, n) Type *v = (Type *)alloca((n)*sizeof(Type))
#else
#define ALLOCA(Type, v, n) Type v[n]