aboutsummaryrefslogtreecommitdiff
path: root/include/platform.h
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-29 19:00:12 +0000
committerRob Landley <rob@landley.net>2006-06-29 19:00:12 +0000
commit7077ea30f532fcaf49b59c5bbf9da7ab05267c21 (patch)
treeca8370d88d0cedcb9fa3651581d99751e2a9d016 /include/platform.h
parentc5e4ab7fe6bd21fa2b8af9da39ec20615d2a4c41 (diff)
downloadbusybox-7077ea30f532fcaf49b59c5bbf9da7ab05267c21.tar.gz
Some old kernel headers don't #include BLKSSZGET in sys/mount.h.
Diffstat (limited to 'include/platform.h')
-rw-r--r--include/platform.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h
index 636c1a56c..7157f8a45 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -222,6 +222,9 @@ typedef unsigned long long int uintmax_t;
#if defined(__linux__)
#include <sys/mount.h>
+#if !defined(BLKSSZGET)
+#define BLKSSZGET _IO(0x12, 104)
+#endif
#if !defined(BLKGETSIZE64)
#define BLKGETSIZE64 _IOR(0x12,114,size_t)
#endif