diff options
Diffstat (limited to 'misc/chroot.c')
-rw-r--r-- | misc/chroot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/chroot.c b/misc/chroot.c index 232a29f363..4c0fe7d637 100644 --- a/misc/chroot.c +++ b/misc/chroot.c @@ -21,8 +21,7 @@ /* Make PATH be the root directory (the starting point for absolute paths). This call is restricted to the super-user. */ int -chroot (path) - const char *path; +chroot (const char *path) { __set_errno (ENOSYS); return -1; |