1/* vi: set sw=4 ts=4: */
2/*
3 * fsck.h
4 */
5
6#define FSCK_ATTR(x) __attribute__(x)
7
8#define EXIT_OK          0
9#define EXIT_NONDESTRUCT 1
10#define EXIT_DESTRUCT    2
11#define EXIT_UNCORRECTED 4
12#define EXIT_ERROR       8
13#define EXIT_USAGE       16
14#define FSCK_CANCELED    32     /* Aborted with a signal or ^C */
15
16extern char *e2fs_set_sbin_path(void);
17