Changes for kernel and Busybox
[tomato.git] / release / src / router / busybox / e2fsprogs / e2fsbb.h
blobd31c319556ffb8491f61ed7c224c05c418a19777
1 /* vi: set sw=4 ts=4: */
2 /*
3 * File: e2fsbb.h
5 * Redefine a bunch of e2fsprogs stuff to use busybox routines
6 * instead. This makes upgrade between e2fsprogs versions easy.
7 */
9 #ifndef E2FSBB_H
10 #define E2FSBB_H 1
12 #include "libbb.h"
14 /* version we've last synced against */
15 #define E2FSPROGS_VERSION "1.38"
16 #define E2FSPROGS_DATE "30-Jun-2005"
18 typedef long errcode_t;
19 #define ERRCODE_RANGE 8
20 #define error_message(code) strerror((int) (code & ((1<<ERRCODE_RANGE)-1)))
22 /* header defines */
23 #define ENABLE_HTREE 1
24 #define HAVE_ERRNO_H 1
25 #define HAVE_EXT2_IOCTLS 1
26 #define HAVE_LINUX_FD_H 1
27 #define HAVE_MNTENT_H 1
28 #define HAVE_NETINET_IN_H 1
29 #define HAVE_NET_IF_H 1
30 #define HAVE_SYS_IOCTL_H 1
31 #define HAVE_SYS_MOUNT_H 1
32 #define HAVE_SYS_QUEUE_H 1
33 #define HAVE_SYS_STAT_H 1
34 #define HAVE_SYS_TYPES_H 1
35 #define HAVE_UNISTD_H 1
37 /* Endianness */
38 #if BB_BIG_ENDIAN
39 #define ENABLE_SWAPFS 1
40 #define WORDS_BIGENDIAN 1
41 #endif
43 #endif