Include signal.h if either compiling for macOS or one of the BSD systems

This commit is contained in:
Cacodemon345 2020-06-03 12:25:07 +06:00 committed by Christoph Oelckers
parent 392f78dfbc
commit e2e47b8d8c

View file

@ -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 <signal.h>
#endif