From 999b31fea6cf144ad41d9134a1bdf3d9f1674175 Mon Sep 17 00:00:00 2001 From: daanx Date: Sat, 18 May 2024 16:39:04 -0700 Subject: [PATCH] allow syscall include on FreeBSD as well --- src/prim/unix/prim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prim/unix/prim.c b/src/prim/unix/prim.c index 1efc84dc..a4e012c7 100644 --- a/src/prim/unix/prim.c +++ b/src/prim/unix/prim.c @@ -57,7 +57,7 @@ terms of the MIT license. A copy of the license can be found in the file #include #endif -#if defined(__linux__) +#if defined(__linux__) || defined(__FreeBSD__) #define MI_HAS_SYSCALL_H #include #endif