diff options
author | Denys Vlasenko | 2014-06-25 15:39:27 +0200 |
---|---|---|
committer | Denys Vlasenko | 2014-06-25 15:39:27 +0200 |
commit | 5aeae36e2b8bcee19c8eb189f55b19febaab4c42 (patch) | |
tree | 80c672e7c172cac73f9011fdc6a028d0d7b783e2 | |
parent | ea23c25e96f74d2e248f790b20e15f18ff91beba (diff) | |
download | busybox-5aeae36e2b8bcee19c8eb189f55b19febaab4c42.zip busybox-5aeae36e2b8bcee19c8eb189f55b19febaab4c42.tar.gz |
libbb: fix compile failure if both ARG_MAX and _SC_ARG_MAX are defined
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/sysconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/sysconf.c b/libbb/sysconf.c index 4dbffbe..0319019 100644 --- a/libbb/sysconf.c +++ b/libbb/sysconf.c @@ -8,7 +8,7 @@ */ #include "libbb.h" -#if defined _SC_ARG_MAX +#if !defined(ARG_MAX) && defined(_SC_ARG_MAX) unsigned FAST_FUNC bb_arg_max(void) { return sysconf(_SC_ARG_MAX); |