diff options
author | Mike Frysinger | 2005-04-25 05:00:33 +0000 |
---|---|---|
committer | Mike Frysinger | 2005-04-25 05:00:33 +0000 |
commit | 7eb6457c4cf76ace4e738c01911c78ec52e51840 (patch) | |
tree | 6d34dd322f473f35bdbe24c82513d0e3ddcf6b3b | |
parent | d2a64d2fc2b6c6666fc48c531387e72d12c3214a (diff) | |
download | busybox-7eb6457c4cf76ace4e738c01911c78ec52e51840.zip busybox-7eb6457c4cf76ace4e738c01911c78ec52e51840.tar.gz |
moved to e2fsprogs too
-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 46690a6..0000000 --- a/util-linux/e2fsbb.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * File: e2fsbb.h - * - * Redefine a bunch of e2fsprogs stuff to use busybox routines - * instead. This makes upgrade between e2fsprogs versions easy. - */ - -#ifndef __E2FSBB_H__ -#define __E2FSBB_H__ 1 - -#include "libbb.h" - -#define _(x) x - -#define com_err(w, c, fmt, args...) bb_error_msg(fmt, ## args) - -#define fputs(msg, fd) bb_error_msg(msg) -#define fatal_error(msg, err) bb_error_msg_and_die(msg) -#define usage() bb_show_usage() -#define perror(msg) bb_perror_msg(msg) - -#endif /* __E2FSBB_H__ */ |