diff options
Diffstat (limited to 'libc/arch-x86_64/syscalls/sethostname.S')
-rw-r--r-- | libc/arch-x86_64/syscalls/sethostname.S | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/arch-x86_64/syscalls/sethostname.S b/libc/arch-x86_64/syscalls/sethostname.S new file mode 100644 index 0000000..4bcd12d --- /dev/null +++ b/libc/arch-x86_64/syscalls/sethostname.S @@ -0,0 +1,15 @@ +/* Generated by gensyscalls.py. Do not edit. */ + +#include <private/bionic_asm.h> + +ENTRY(sethostname) + movl $__NR_sethostname, %eax + syscall + cmpq $-MAX_ERRNO, %rax + jb 1f + negl %eax + movl %eax, %edi + call __set_errno_internal +1: + ret +END(sethostname) |