diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-13 22:45:42 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-13 22:45:42 -0500 |
commit | 2cdfb7ca26f46f151afbc23d5d94fc68597137f5 (patch) | |
tree | 0baa2cd0776f2a44997950e0bc8ab646dc2067b2 /src/unistd/setreuid.c | |
parent | 978ca016593077d27cc2a828f21c5e45e57074aa (diff) | |
download | musl-2cdfb7ca26f46f151afbc23d5d94fc68597137f5.tar.gz |
cleaning up syscalls in preparation for x86_64 port
- hide all the legacy xxxxxx32 name cruft in syscall.h so the actual
source files can be clean and uniform across all archs.
- cleanup llseek/lseek and mmap2/mmap handling for 32/64 bit systems
- alternate implementation for nice if the target lacks nice syscall
Diffstat (limited to 'src/unistd/setreuid.c')
-rw-r--r-- | src/unistd/setreuid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/setreuid.c b/src/unistd/setreuid.c index 0ba2277b..47c67306 100644 --- a/src/unistd/setreuid.c +++ b/src/unistd/setreuid.c @@ -4,6 +4,6 @@ int setreuid(uid_t ruid, uid_t euid) { - if (libc.rsyscall) return libc.rsyscall(__NR_setreuid32, ruid, euid, 0, 0, 0, 0); - return syscall2(__NR_setreuid32, ruid, euid); + if (libc.rsyscall) return libc.rsyscall(__NR_setreuid, ruid, euid, 0, 0, 0, 0); + return syscall2(__NR_setreuid, ruid, euid); } |