summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Borca <dborca@yahoo.com>2013-11-27 00:27:46 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-11-27 00:27:46 +0100
commitd9fc4d8f9249dcbbccb0007a3c609ed9ddaf5d72 (patch)
treefd7f53cb067715169f7597e149011a9e68105bff
parent195c436f84dce8525670fa6bc6db7916a4702f57 (diff)
downloadbusybox-d9fc4d8f9249dcbbccb0007a3c609ed9ddaf5d72.tar.gz
busybox-d9fc4d8f9249dcbbccb0007a3c609ed9ddaf5d72.tar.bz2
busybox-d9fc4d8f9249dcbbccb0007a3c609ed9ddaf5d72.zip
platform: strchrnul is missing if __APPLE__
Signed-off-by: Daniel Borca <dborca@yahoo.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--include/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/platform.h b/include/platform.h
index 0fa9f6182..cfc802907 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -434,7 +434,7 @@ typedef unsigned smalluint;
# undef HAVE_UNLOCKED_LINE_OPS
#endif
-#if defined(__FreeBSD__)
+#if defined(__FreeBSD__) || defined(__APPLE__)
# undef HAVE_STRCHRNUL
#endif