diff options
Diffstat (limited to 'libc/arch-x86/syscalls/getsockopt.S')
-rw-r--r-- | libc/arch-x86/syscalls/getsockopt.S | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libc/arch-x86/syscalls/getsockopt.S b/libc/arch-x86/syscalls/getsockopt.S index a606532b1..190b6f293 100644 --- a/libc/arch-x86/syscalls/getsockopt.S +++ b/libc/arch-x86/syscalls/getsockopt.S @@ -1,12 +1,8 @@ /* autogenerated by gensyscalls.py */ +#include <machine/asm.h> #include <sys/linux-syscalls.h> - .text - .type getsockopt, @function - .globl getsockopt - .align 4 - -getsockopt: +ENTRY(getsockopt) pushl %ebx pushl %ecx mov $15, %ebx @@ -25,3 +21,4 @@ getsockopt: popl %ecx popl %ebx ret +END(getsockopt) |