summaryrefslogtreecommitdiff
path: root/usys.S
diff options
context:
space:
mode:
Diffstat (limited to 'usys.S')
-rw-r--r--usys.S10
1 files changed, 5 insertions, 5 deletions
diff --git a/usys.S b/usys.S
index 617fdc5..39d343a 100644
--- a/usys.S
+++ b/usys.S
@@ -2,11 +2,11 @@
#include "traps.h"
#define STUB(name) \
- .globl name; \
- name: \
- movl $SYS_ ## name, %eax; \
- int $T_SYSCALL; \
- ret
+ .globl name; \
+ name: \
+ movl $SYS_ ## name, %eax; \
+ int $T_SYSCALL; \
+ ret
STUB(fork)
STUB(exit)