This commit is contained in:
Eric Andersen
1999-12-07 08:37:31 +00:00
parent 0ecb54a0f3
commit d00c262847
9 changed files with 128 additions and 59 deletions

View File

@@ -107,6 +107,12 @@ umount_all(int useMtab)
extern int
umount_main(int argc, char** argv)
{
int i=0;
char **foo=argv;
while(*foo) {
fprintf(stderr, "argv[%d]='%s'\n", i++, *foo);
foo++;
}
if (argc < 2) {
usage( umount_usage);