diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-18 14:38:21 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-18 14:38:21 +0100 |
commit | 98f1dc12f1554aca6c3743bec1c3d8982a077f7c (patch) | |
tree | 0f37a9e6662f930772ac914c82f2ec85fdbec30d /libbb | |
parent | 0c0f1767f06004cb0620a42ed9d0aa5d94dd52f3 (diff) | |
download | busybox-98f1dc12f1554aca6c3743bec1c3d8982a077f7c.tar.gz |
libbb/loop: comment out u32 hack
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/loop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbb/loop.c b/libbb/loop.c index 7a551a41b..abf05dc4f 100644 --- a/libbb/loop.c +++ b/libbb/loop.c @@ -13,7 +13,8 @@ #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) /* For 2.6, use the cleaned up header to get the 64 bit API. */ -# include "fix_u32.h" /* some old toolchains need __u64 for linux/loop.h */ +// Commented out per Rob's request +//# include "fix_u32.h" /* some old toolchains need __u64 for linux/loop.h */ # include <linux/loop.h> typedef struct loop_info64 bb_loop_info; # define BB_LOOP_SET_STATUS LOOP_SET_STATUS64 |