From e2e47b8d8c6e7332002d9c07dac45a5a4d747191 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Wed, 3 Jun 2020 12:25:07 +0600 Subject: [PATCH] Include signal.h if either compiling for macOS or one of the BSD systems --- src/common/platform/posix/sdl/crashcatcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/platform/posix/sdl/crashcatcher.c b/src/common/platform/posix/sdl/crashcatcher.c index be0e8f599..698707027 100644 --- a/src/common/platform/posix/sdl/crashcatcher.c +++ b/src/common/platform/posix/sdl/crashcatcher.c @@ -11,7 +11,7 @@ #ifndef PR_SET_PTRACER #define PR_SET_PTRACER 0x59616d61 #endif -#elif defined (__APPLE__) || defined (__FreeBSD__) || defined(__OpenBSD__) +#elif defined (__APPLE__) || defined (BSD) #include #endif