summaryrefslogtreecommitdiff
path: root/mach/mach_shortcuts.c
diff options
context:
space:
mode:
Diffstat (limited to 'mach/mach_shortcuts.c')
-rw-r--r--mach/mach_shortcuts.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/mach/mach_shortcuts.c b/mach/mach_shortcuts.c
deleted file mode 100644
index ef1792b003..0000000000
--- a/mach/mach_shortcuts.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <mach/mach_types.h>
-#include <mach/mach_port.h>
-
-#define SHORTCUT(name, number, args, typed_args) \
-kern_return_t __##name typed_args \
-{ \
- kern_return_t ret = __syscall_##name args; \
- if (ret == MACH_SEND_INTERRUPTED) \
- ret = __mig_##name args; \
- return ret; \
-}
-
-#include "mach_shortcuts.h"