blob: 48727b3d850c49a144aa592086742d3303a3c4b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- compiler/errors/exception.hh.orig 2025-03-11 20:48:17 UTC
+++ compiler/errors/exception.hh
@@ -24,7 +24,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, U
#include <sstream>
#include <stdexcept>
#ifndef WIN32
+# if !defined(__FreeBSD__)
#include <alloca.h>
+# else
+#include <stdlib.h>
+# endif
#include <unistd.h>
#else
// #include <io.h>
|