diff options
author | Rob Landley | 2006-05-29 05:00:44 +0000 |
---|---|---|
committer | Rob Landley | 2006-05-29 05:00:44 +0000 |
commit | 15d20a03d6e1c995fa8b80542568f5db4091f734 (patch) | |
tree | 1f002dd3cbcf4150910c3281c946bb7ea8dd8add /util-linux/fdisk.c | |
parent | 8394729ddfb2d340877e83be9c1f13ee59fc2557 (diff) | |
download | busybox-15d20a03d6e1c995fa8b80542568f5db4091f734.zip busybox-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 'util-linux/fdisk.c')
-rw-r--r-- | util-linux/fdisk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 8ceeb48..26ec2e3 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -10,6 +10,8 @@ #define UTIL_LINUX_VERSION "2.12" +#define _(x) x + #define PROC_PARTITIONS "/proc/partitions" #include <features.h> |