2 ** Copyright 2002, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
5 #include <sys/syscalls.h>
9 int main(int argc
, char *argv
[])
14 printf("not enough arguments to unmount\n");
18 rc
= _kern_unmount(argv
[1]);
20 printf("_kern_unmount() returned error: %s\n", strerror(rc
));
22 printf("%s successfully unmounted.\n", argv
[1]);