reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 | #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> |