use syscall_arg_t for arguments in public syscall() function
authorRich Felker <dalias@aerifal.cx>
Tue, 18 Mar 2014 21:08:15 +0000 (17:08 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 18 Mar 2014 21:08:15 +0000 (17:08 -0400)
commit5f95f965e933c5b155db75520ac27c92ddbcf400
tree140ae575d4a3ed1ff3767c44368f71331aeb9f08
parentf162c064ab71dc3631abd8db9e53099a1c80b9cf
use syscall_arg_t for arguments in public syscall() function

on x32, this change allows programs which use syscall() with pointers
or 64-bit values as arguments to work correctly, i.e. without
truncation or incorrect sign extension. on all other supported archs,
syscall_arg_t is defined as long, so this change is a no-op.
src/misc/syscall.c