fsck.h 351 B

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