blob: f4267055004c1b8b1e7101da75c7f81d7b37021b [file] [log] [blame]
Elliott Hughes103ccde2013-10-16 14:27:59 -07001/* Generated by gensyscalls.py. Do not edit. */
2
Elliott Hughesed744842013-11-07 10:31:05 -08003#include <private/bionic_asm.h>
Elliott Hughese4ffd9f2013-10-01 13:29:43 -07004
Elliott Hughes232163c2013-10-09 17:35:36 -07005ENTRY(setuid)
Elliott Hughese4ffd9f2013-10-01 13:29:43 -07006 movl $__NR_setuid, %eax
7 syscall
8 cmpq $-MAX_ERRNO, %rax
9 jb 1f
10 negl %eax
11 movl %eax, %edi
12 call __set_errno
13 orq $-1, %rax
141:
15 ret
Elliott Hughes232163c2013-10-09 17:35:36 -070016END(setuid)