diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-08-26 18:06:30 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-08-26 18:06:30 +0000 |
commit | 43181a9ef29d46a86c874779e8e5691685f7ba4d (patch) | |
tree | 39fe51888ef425a493f7db7f66d5904a77a4a778 /bsdfsck/main.c | |
parent | de8e916714a79b4f003a51bd316b679293cc2613 (diff) |
entered into RCS
Diffstat (limited to 'bsdfsck/main.c')
-rw-r--r-- | bsdfsck/main.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bsdfsck/main.c b/bsdfsck/main.c index 3535edca..adf84f74 100644 --- a/bsdfsck/main.c +++ b/bsdfsck/main.c @@ -39,7 +39,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)main.c 8.2 (Berkeley) 1/23/94";*/ -static char *rcsid = "$Id: main.c,v 1.3 1994/08/25 15:18:07 mib Exp $"; +static char *rcsid = "$Id: main.c,v 1.4 1994/08/26 18:06:30 mib Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -57,6 +57,9 @@ static char *rcsid = "$Id: main.c,v 1.3 1994/08/25 15:18:07 mib Exp $"; void catch(), catchquit(), voidquit(); int returntosingle; +/* GNU Hurd patch */ +#define blockcheck(a) (a) + main(argc, argv) int argc; char *argv[]; @@ -64,7 +67,8 @@ main(argc, argv) int ch; int ret, maxrun = 0; extern int docheck(), checkfilesys(); - extern char *optarg, *blockcheck(); + extern char *optarg; +/* extern char *blockcheck(); */ extern int optind; sync(); |