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 /libbb | |
parent | 136091886e287181c6c55bbeadf7325545285416 (diff) |
nicer looking ifdef in libbb/makedev.c
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/makedev.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libbb/makedev.c b/libbb/makedev.c index 1809fda4e..06c4039a3 100644 --- a/libbb/makedev.c +++ b/libbb/makedev.c @@ -8,22 +8,23 @@ /* We do not include libbb.h - #define makedev() is there! */ #include "platform.h" -#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ - || defined(__APPLE__) \ - ) + +/* Different Unixes want different headers for makedev */ +#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ + || defined(__APPLE__) +# include <sys/types.h> +#else # include <features.h> # include <sys/sysmacros.h> -#else -# include <sys/types.h> #endif #ifdef __GLIBC__ -/* At least glibc has horrendously large inline for this, so wrap it */ +/* At least glibc has horrendously large inline for this, so wrap it. */ /* uclibc people please check - do we need "&& !__UCLIBC__" above? */ -/* suppress gcc "no previous prototype" warning */ -unsigned long long FAST_FUNC bb_makedev(unsigned int major, unsigned int minor); -unsigned long long FAST_FUNC bb_makedev(unsigned int major, unsigned int minor) +/* Suppress gcc "no previous prototype" warning */ +unsigned long long FAST_FUNC bb_makedev(unsigned major, unsigned minor); +unsigned long long FAST_FUNC bb_makedev(unsigned major, unsigned minor) { return makedev(major, minor); } |