From 256c4fd587691076846383ab8b207b07cd5614e4 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 19 May 2004 09:00:00 +0000 Subject: Make vodz happy and make fdisk always use large file support if possible, even if LFS is not enabled for the rest of busybox. -Erik --- util-linux/fdisk.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'util-linux/fdisk.c') diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index ed4261162..a2c03ce79 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -14,6 +14,14 @@ #define PROC_PARTITIONS "/proc/partitions" +#include +/* Force fdisk to transparently remap 32-bit interfaces + * to instead really use 64 bit interfaces, at least for + * glibc and uClibc... */ +#ifndef __USE_FILE_OFFSET64 +# define __USE_FILE_OFFSET64 1 +#endif + #include #include /* stat */ #include -- cgit v1.2.3