e2fsbb.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * File: e2fsbb.h
  3. *
  4. * Redefine a bunch of e2fsprogs stuff to use busybox routines
  5. * instead. This makes upgrade between e2fsprogs versions easy.
  6. */
  7. #ifndef __E2FSBB_H__
  8. #define __E2FSBB_H__ 1
  9. #include "libbb.h"
  10. /* version we've last synced against */
  11. #define E2FSPROGS_VERSION "1.37"
  12. #define E2FSPROGS_DATE "21-Mar-2005"
  13. /* make sure com_err.h isnt included before us */
  14. #ifdef __COM_ERR_H__
  15. #error You should not have included com_err.h !
  16. #endif
  17. #define __COM_ERR_H__
  18. /* com_err crap */
  19. #define com_err(w, c, fmt, args...) bb_error_msg(fmt, ## args)
  20. typedef long errcode_t;
  21. #define ERRCODE_RANGE 8
  22. #define error_message(code) strerror((int) (code & ((1<<ERRCODE_RANGE)-1)))
  23. /* NLS crap */
  24. #define _(x) x
  25. #define N_(x) x
  26. #define P_(singular, plural, n) ((n) == 1 ? (singular) : (plural))
  27. /* misc crap */
  28. #define fatal_error(msg, err) bb_error_msg_and_die(msg)
  29. #define usage() bb_show_usage()
  30. #define perror(msg) bb_perror_msg(msg)
  31. /* header defines */
  32. #define HAVE_ERRNO_H 1
  33. #define HAVE_UNISTD_H 1
  34. #define HAVE_EXT2_IOCTLS 1
  35. #define HAVE_STDLIB_H 1
  36. #define HAVE_SYS_STAT_H 1
  37. #define HAVE_SYS_TYPES_H 1
  38. #define HAVE_UNISTD_H 1
  39. #define HAVE_SYS_IOCTL_H 1
  40. #define HAVE_SYS_QUEUE_H 1
  41. #define HAVE_SYS_SOCKET_H 1
  42. #define HAVE_NETINET_IN_H 1
  43. #define HAVE_INTTYPES_H 1
  44. #define HAVE_NET_IF_H 1
  45. #define HAVE_GETOPT_H 1
  46. #define HAVE_SYS_RESOURCE_H 1
  47. #define HAVE_SYS_MOUNT_H 1
  48. #define HAVE_SYS_TIME_H 1
  49. #define HAVE_LINUX_FD_H 1
  50. #define HAVE_MNTENT_H 1
  51. #endif /* __E2FSBB_H__ */