Include <mach.h>, not <mach/mach.h> for NeXTStep 2.1.

From-SVN: r7008
This commit is contained in:
Richard Kenner 1994-04-09 15:02:49 -04:00
parent 2225b8f980
commit c5df463e3b
1 changed files with 5 additions and 2 deletions

View File

@ -1792,8 +1792,11 @@ TRANSFER_FROM_TRAMPOLINE
/* Make stack executable so we can call trampolines on stack.
This is called from INITIALIZE_TRAMPOLINE in next.h. */
#include <mach/mach.h>
#ifdef NeXTStep21
#include <mach.h>
#else
#include <mach/mach.h>
#endif
void
__enable_execute_stack (addr)