diff options
Diffstat (limited to 'libc/arch-x86/syscalls/getgid.S')
-rw-r--r-- | libc/arch-x86/syscalls/getgid.S | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libc/arch-x86/syscalls/getgid.S b/libc/arch-x86/syscalls/getgid.S index d69d722f2..7a5120002 100644 --- a/libc/arch-x86/syscalls/getgid.S +++ b/libc/arch-x86/syscalls/getgid.S @@ -1,12 +1,8 @@ /* autogenerated by gensyscalls.py */ +#include <machine/asm.h> #include <sys/linux-syscalls.h> - .text - .type getgid, @function - .globl getgid - .align 4 - -getgid: +ENTRY(getgid) movl $__NR_getgid32, %eax int $0x80 cmpl $-129, %eax @@ -18,3 +14,4 @@ getgid: orl $-1, %eax 1: ret +END(getgid) |