summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-10-14 20:44:05 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-10-14 20:44:05 +0000
commit49105ac78372aa88489857e625e56e7d37698462 (patch)
tree3fc35be1504d593376279318a2fb955b63e12375
parentd127b2fc22daa9906c04d2d31694544e1eae8cdd (diff)
Formerly fsck.h.~6~
-rw-r--r--ufs-fsck/fsck.h8
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)));