Avoid deprecated error on Darwin.
This commit is contained in:
parent
b67e49051c
commit
49cd7878e3
1 changed files with 6 additions and 1 deletions
|
@ -40,7 +40,12 @@
|
||||||
|
|
||||||
static void *main_fiber;
|
static void *main_fiber;
|
||||||
|
|
||||||
#elif defined(__linux)
|
#elif defined(__linux) || defined(__APPLE__)
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
/* Avoid deprecated error on Darwin */
|
||||||
|
#define _XOPEN_SOURCE
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue