diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-10-14 20:44:05 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-10-14 20:44:05 +0000 |
commit | 04b545c9a948f24c660d69bdaae68c9447b9acbf (patch) | |
tree | 36ff16c51843fe12f3a3a94f2c9ebfcd439e00e8 | |
parent | c73d4c832c3038c60c6ccffacfb2301051ec4570 (diff) |
Formerly fsck.h.~6~
-rw-r--r-- | ufs-fsck/fsck.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ufs-fsck/fsck.h b/ufs-fsck/fsck.h index 6c68959b..7cbee23c 100644 --- a/ufs-fsck/fsck.h +++ b/ufs-fsck/fsck.h @@ -1,3 +1,4 @@ + /* Copyright (C) 1994 Free Software Foundation, Inc. Written by Michael I. Bushnell. @@ -57,7 +58,8 @@ char *blockmap; /* Command line flags */ -int nowrite; +int nowrite; /* all questions fail */ +int noquery; /* all questions succeed */ enum contret @@ -164,8 +166,8 @@ void allblock_iterate (struct dinode *, int (*)(daddr_t, int)); void record_directory (struct dinode *, ino_t); int reply (char *); -void pfatal (char *, ...) __attribute__ ((format (printf, 1, 2))); +int pfatal (char *, ...) __attribute__ ((format (printf, 1, 2))); void errexit (char *, ...) __attribute__ ((format (printf, 1, 2), noreturn)); -void pwarn (char *, ...) __attribute__ ((format (printf, 1, 2))); +int pwarn (char *, ...) __attribute__ ((format (printf, 1, 2))); |