diff options
author | Daniel Borca <dborca@yahoo.com> | 2013-11-27 00:27:46 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-27 00:27:46 +0100 |
commit | d9fc4d8f9249dcbbccb0007a3c609ed9ddaf5d72 (patch) | |
tree | fd7f53cb067715169f7597e149011a9e68105bff /include/platform.h | |
parent | 195c436f84dce8525670fa6bc6db7916a4702f57 (diff) | |
download | busybox-w32-d9fc4d8f9249dcbbccb0007a3c609ed9ddaf5d72.tar.gz busybox-w32-d9fc4d8f9249dcbbccb0007a3c609ed9ddaf5d72.tar.bz2 busybox-w32-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>
Diffstat (limited to 'include/platform.h')
-rw-r--r-- | include/platform.h | 2 |
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; | |||
434 | # undef HAVE_UNLOCKED_LINE_OPS | 434 | # undef HAVE_UNLOCKED_LINE_OPS |
435 | #endif | 435 | #endif |
436 | 436 | ||
437 | #if defined(__FreeBSD__) | 437 | #if defined(__FreeBSD__) || defined(__APPLE__) |
438 | # undef HAVE_STRCHRNUL | 438 | # undef HAVE_STRCHRNUL |
439 | #endif | 439 | #endif |
440 | 440 | ||