Implement <sys/fsuid.h>.

Change-Id: I1e5e50444a1b5a430ba5b5d9b8b1d91219af5e92
This commit is contained in:
Elliott Hughes
2014-07-30 15:05:09 -07:00
parent c7706a02ad
commit 79310994d2
14 changed files with 220 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
/* Generated by gensyscalls.py. Do not edit. */
#include <private/bionic_asm.h>
ENTRY(setfsuid)
pushl %ebx
.cfi_def_cfa_offset 8
.cfi_rel_offset ebx, 0
mov 8(%esp), %ebx
movl $__NR_setfsuid, %eax
int $0x80
cmpl $-MAX_ERRNO, %eax
jb 1f
negl %eax
pushl %eax
call __set_errno
addl $4, %esp
1:
popl %ebx
ret
END(setfsuid)