fsck.h 355 B

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