aboutsummaryrefslogtreecommitdiff
path: root/libbb/sysconf.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2014-06-25 15:39:27 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2014-06-25 15:39:27 +0200
commit5aeae36e2b8bcee19c8eb189f55b19febaab4c42 (patch)
tree80c672e7c172cac73f9011fdc6a028d0d7b783e2 /libbb/sysconf.c
parentea23c25e96f74d2e248f790b20e15f18ff91beba (diff)
downloadbusybox-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>
Diffstat (limited to 'libbb/sysconf.c')
-rw-r--r--libbb/sysconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/sysconf.c b/libbb/sysconf.c
index 4dbffbebd..031901980 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);