diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 03:06:04 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 03:06:04 +0200 |
commit | 4ac9819263114edb9b5b638ffa6d2e41a4bb46e7 (patch) | |
tree | f0c5bc9c7a2bf3a384b85350bfe4c9ca5ec4858f /miscutils | |
parent | 5b807cd5acd1f27b3e7aa36aac2728be27c5907c (diff) | |
download | busybox-w32-4ac9819263114edb9b5b638ffa6d2e41a4bb46e7.tar.gz busybox-w32-4ac9819263114edb9b5b638ffa6d2e41a4bb46e7.tar.bz2 busybox-w32-4ac9819263114edb9b5b638ffa6d2e41a4bb46e7.zip |
apply post-1.15.1 fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/hdparm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 60682231a..0917b4175 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c | |||
@@ -15,6 +15,9 @@ | |||
15 | /* must be _after_ libbb.h: */ | 15 | /* must be _after_ libbb.h: */ |
16 | #include <linux/hdreg.h> | 16 | #include <linux/hdreg.h> |
17 | #include <sys/mount.h> | 17 | #include <sys/mount.h> |
18 | #if !defined(BLKGETSIZE64) | ||
19 | # define BLKGETSIZE64 _IOR(0x12,114,size_t) | ||
20 | #endif | ||
18 | 21 | ||
19 | /* device types */ | 22 | /* device types */ |
20 | /* ------------ */ | 23 | /* ------------ */ |