diff options
Diffstat (limited to 'boot')
-rw-r--r-- | boot/boot.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/boot/boot.c b/boot/boot.c index bb7ab5b6..a1bef66d 100644 --- a/boot/boot.c +++ b/boot/boot.c @@ -81,6 +81,13 @@ lseek (int fd, } int +_exit (int code) +{ + return syscall (1, code); +} + + +int request_server (mach_msg_header_t *inp, mach_msg_header_t *outp) { |