util-linux/include/exitcodes.h

10 lines
274 B
C
Raw Normal View History

#ifndef UTIL_LINUX_EXITCODES_H
#define UTIL_LINUX_EXITCODES_H
/* Exit codes used by mkfs-type programs */
#define MKFS_OK 0 /* No errors */
#define MKFS_ERROR 8 /* Operational error */
#define MKFS_USAGE 16 /* Usage or syntax error */
#endif /* UTIL_LINUX_EXITCODES_H */