diff options
| author | Daniil Cherednik <[email protected]> | 2025-05-31 16:49:58 +0200 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2025-05-31 16:52:15 +0200 |
| commit | 0c3e65863f31459c4be8a12051a8d6260cb1d307 (patch) | |
| tree | 914069c21e57f2f9f7e52d2908324ccd984a7b3c /src/gha.c | |
| parent | 93f74f12ebe3770c457fe4cee41699337a6715c1 (diff) | |
Fix compilation for FreeBSD and probably other OS without alloca.h.at3pghadev
Diffstat (limited to 'src/gha.c')
| -rw-r--r-- | src/gha.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,10 +13,14 @@ #else +#ifdef LIBGHA_HAVE_ALLOCA_H + #include <alloca.h> #endif +#endif + /* * Ref: http://www.apsipa.org/proceedings_2009/pdf/WA-L3-3.pdf */ |
