You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
383 B
12 lines
383 B
#ifdef __APPLE__
|
|
// ucontext.h is deprecated on macOS, so tests that include it may stop working
|
|
// someday. We define _XOPEN_SOURCE to keep using ucontext.h for now.
|
|
#ifdef _STRUCT_UCONTEXT
|
|
#error incomplete ucontext_t already defined, change #include order
|
|
#endif
|
|
#define _XOPEN_SOURCE 700
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
#endif
|
|
|
|
#include <ucontext.h>
|