1.0.25.2: Eliminate untagged pointers to heap space in cold-init
[sbcl.git] / src / runtime / darwin-os.h
index b93fa2b..f0923d7 100644 (file)
@@ -5,6 +5,8 @@
 
 #include <mach/mach_init.h>
 #include <mach/task.h>
+#include <AvailabilityMacros.h>
+#include <sys/cdefs.h>
 
 /* man pages claim that the third argument is a sigcontext struct,
    but ucontext_t is defined, matches sigcontext where sensible,
 #if defined(LISP_FEATURE_X86)
 #include <sys/ucontext.h>
 #include <sys/_types.h>
+
+#if __DARWIN_UNIX03
+typedef struct __darwin_ucontext os_context_t;
+#else
 typedef struct ucontext os_context_t;
+#endif
+
 
 #else
 #include <ucontext.h>