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 | |
parent | 195c436f84dce8525670fa6bc6db7916a4702f57 (diff) | |
download | busybox-d9fc4d8f9249dcbbccb0007a3c609ed9ddaf5d72.tar.gz |
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.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; # undef HAVE_UNLOCKED_LINE_OPS #endif -#if defined(__FreeBSD__) +#if defined(__FreeBSD__) || defined(__APPLE__) # undef HAVE_STRCHRNUL #endif |