Switch to using the setfib syscall instead of a syscall(175,...)

This commit is contained in:
julian 2008-07-24 18:01:50 +00:00
parent a1ffd780f3
commit 563c4bfc08

View File

@ -87,7 +87,7 @@ main(int argc, char *argv[])
usage();
errno = 0;
if (syscall(175, (int)fib))
if (setfib((int)fib))
warn("setfib");
execvp(*argv, argv);
err(errno == ENOENT ? 127 : 126, "%s", *argv);