aboutsummaryrefslogtreecommitdiff
path: root/util-linux/fdisk.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-22 23:16:39 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-22 23:16:39 +0200
commitaf3fd14e4df87d8af833d5e7b97d285b4d137d60 (patch)
tree56027df28b48904f3e06048034135848dcabd99c /util-linux/fdisk.c
parented4ff0e8cbe8b330ecc9c51d0c5ff2ad1647ad5d (diff)
downloadbusybox-af3fd14e4df87d8af833d5e7b97d285b4d137d60.tar.gz
hdparm,fdisk: reinstate BLKGETSIZE64 #defines. No code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r--util-linux/fdisk.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c
index e50ee77d1..1bb3a9d4e 100644
--- a/util-linux/fdisk.c
+++ b/util-linux/fdisk.c
@@ -9,13 +9,16 @@
#ifndef _LARGEFILE64_SOURCE
/* For lseek64 */
-#define _LARGEFILE64_SOURCE
+# define _LARGEFILE64_SOURCE
#endif
#include <assert.h> /* assert */
#include <sys/mount.h>
#if !defined(BLKSSZGET)
# define BLKSSZGET _IO(0x12, 104)
#endif
+#if !defined(BLKGETSIZE64)
+# define BLKGETSIZE64 _IOR(0x12,114,size_t)
+#endif
#include "libbb.h"
/* Looks like someone forgot to add this to config system */