diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-24 23:53:12 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-24 23:53:12 +0100 |
commit | 975c7141831aa6bf8d9abcafd1e5a9e108a910fc (patch) | |
tree | 25d4fc857ff84174ddbe6048b3e8f34134a1dc59 /include | |
parent | 136091886e287181c6c55bbeadf7325545285416 (diff) | |
download | busybox-w32-975c7141831aa6bf8d9abcafd1e5a9e108a910fc.tar.gz busybox-w32-975c7141831aa6bf8d9abcafd1e5a9e108a910fc.tar.bz2 busybox-w32-975c7141831aa6bf8d9abcafd1e5a9e108a910fc.zip |
nicer looking ifdef in libbb/makedev.c
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index e5988236d..968bdcf5a 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1297,7 +1297,7 @@ void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST | |||
1297 | void reset_ino_dev_hashtable(void) FAST_FUNC; | 1297 | void reset_ino_dev_hashtable(void) FAST_FUNC; |
1298 | #ifdef __GLIBC__ | 1298 | #ifdef __GLIBC__ |
1299 | /* At least glibc has horrendously large inline for this, so wrap it */ | 1299 | /* At least glibc has horrendously large inline for this, so wrap it */ |
1300 | unsigned long long bb_makedev(unsigned int major, unsigned int minor) FAST_FUNC; | 1300 | unsigned long long bb_makedev(unsigned major, unsigned minor) FAST_FUNC; |
1301 | #undef makedev | 1301 | #undef makedev |
1302 | #define makedev(a,b) bb_makedev(a,b) | 1302 | #define makedev(a,b) bb_makedev(a,b) |
1303 | #endif | 1303 | #endif |