summaryrefslogtreecommitdiff
path: root/src/internal/i386/syscall.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/i386/syscall.s')
-rw-r--r--src/internal/i386/syscall.s21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/internal/i386/syscall.s b/src/internal/i386/syscall.s
deleted file mode 100644
index 004ddfef..00000000
--- a/src/internal/i386/syscall.s
+++ /dev/null
@@ -1,21 +0,0 @@
-.global __syscall
-.hidden __syscall
-.type __syscall,@function
-__syscall:
- push %ebx
- push %esi
- push %edi
- push %ebp
- mov 20(%esp),%eax
- mov 24(%esp),%ebx
- mov 28(%esp),%ecx
- mov 32(%esp),%edx
- mov 36(%esp),%esi
- mov 40(%esp),%edi
- mov 44(%esp),%ebp
- call *%gs:16
- pop %ebp
- pop %edi
- pop %esi
- pop %ebx
- ret