MFC r331135:

Use __syscall(2) rather than syscall(2) in syscall/tst.args.c.
This commit is contained in:
Mark Johnston 2018-03-26 15:21:23 +00:00
parent 7d75efa1b2
commit 7a65fc9652

View File

@ -35,7 +35,7 @@ int
main(int argc, char **argv)
{
for (;;) {
(void) syscall(SYS_mmap, NULL, 1, 2, 3, -1, 0x12345678);
(void) __syscall(SYS_mmap, NULL, 1, 2, 3, -1, 0x12345678);
}
return (0);