aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-05-29 05:00:44 +0000
committerRob Landley <rob@landley.net>2006-05-29 05:00:44 +0000
commit15d20a03d6e1c995fa8b80542568f5db4091f734 (patch)
tree1f002dd3cbcf4150910c3281c946bb7ea8dd8add /e2fsprogs
parent8394729ddfb2d340877e83be9c1f13ee59fc2557 (diff)
downloadbusybox-15d20a03d6e1c995fa8b80542568f5db4091f734.tar.gz
Remove _() and N_() from platform.h. #define them as NOP macros in the two
files still using them. I didn't remove them from e2fsck.c to avoid stomping pending cleanup patches from Garrett, and I didn't bother to remove them from fdisk.c because that entire file needs to be rewritten from scratch.
Diffstat (limited to 'e2fsprogs')
-rw-r--r--e2fsprogs/e2fsck.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/e2fsprogs/e2fsck.c b/e2fsprogs/e2fsck.c
index 6f3fd7eda..ceafaea4b 100644
--- a/e2fsprogs/e2fsck.c
+++ b/e2fsprogs/e2fsck.c
@@ -39,6 +39,9 @@
#include "e2fsck.h" /*Put all of our defines here to clean things up*/
+#define _(x) x
+#define N_(x) x
+
/*
* Procedure declarations
*/