diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-25 05:00:33 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-25 05:00:33 +0000 |
commit | 8d75c438ed1b83c2cf470d959db38bb481fad936 (patch) | |
tree | 6d34dd322f473f35bdbe24c82513d0e3ddcf6b3b | |
parent | 613cd64983de4adc82528e98fc255f21a13674b5 (diff) | |
download | busybox-w32-8d75c438ed1b83c2cf470d959db38bb481fad936.tar.gz busybox-w32-8d75c438ed1b83c2cf470d959db38bb481fad936.tar.bz2 busybox-w32-8d75c438ed1b83c2cf470d959db38bb481fad936.zip |
moved to e2fsprogs too
git-svn-id: svn://busybox.net/trunk/busybox@10178 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | util-linux/e2fsbb.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/util-linux/e2fsbb.h b/util-linux/e2fsbb.h deleted file mode 100644 index 46690a65d..000000000 --- a/util-linux/e2fsbb.h +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
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 | |||
8 | #ifndef __E2FSBB_H__ | ||
9 | #define __E2FSBB_H__ 1 | ||
10 | |||
11 | #include "libbb.h" | ||
12 | |||
13 | #define _(x) x | ||
14 | |||
15 | #define com_err(w, c, fmt, args...) bb_error_msg(fmt, ## args) | ||
16 | |||
17 | #define fputs(msg, fd) bb_error_msg(msg) | ||
18 | #define fatal_error(msg, err) bb_error_msg_and_die(msg) | ||
19 | #define usage() bb_show_usage() | ||
20 | #define perror(msg) bb_perror_msg(msg) | ||
21 | |||
22 | #endif /* __E2FSBB_H__ */ | ||