diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-08 02:58:38 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-08 02:58:38 +0200 |
commit | da49f5852481adb0b3fa0b5ccba93b266f271c35 (patch) | |
tree | 3ab27dafe02a3723658ab2649e8b3ea28b024ac5 /util-linux/volume_id | |
parent | 95cc814dbd37a4cb5a69b5eac80bd3e5173fe908 (diff) | |
download | busybox-w32-da49f5852481adb0b3fa0b5ccba93b266f271c35.tar.gz busybox-w32-da49f5852481adb0b3fa0b5ccba93b266f271c35.tar.bz2 busybox-w32-da49f5852481adb0b3fa0b5ccba93b266f271c35.zip |
move libc related stuff out of platform.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/volume_id')
-rw-r--r-- | util-linux/volume_id/get_devname.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/util-linux/volume_id/get_devname.c b/util-linux/volume_id/get_devname.c index a1786df1c..0686a0741 100644 --- a/util-linux/volume_id/get_devname.c +++ b/util-linux/volume_id/get_devname.c | |||
@@ -7,11 +7,12 @@ | |||
7 | * | 7 | * |
8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
9 | */ | 9 | */ |
10 | 10 | #include <sys/mount.h> /* BLKGETSIZE64 */ | |
11 | #if !defined(BLKGETSIZE64) | ||
12 | # define BLKGETSIZE64 _IOR(0x12,114,size_t) | ||
13 | #endif | ||
11 | #include "volume_id_internal.h" | 14 | #include "volume_id_internal.h" |
12 | 15 | ||
13 | //#define BLKGETSIZE64 _IOR(0x12,114,size_t) | ||
14 | |||
15 | static struct uuidCache_s { | 16 | static struct uuidCache_s { |
16 | struct uuidCache_s *next; | 17 | struct uuidCache_s *next; |
17 | // int major, minor; | 18 | // int major, minor; |