summaryrefslogtreecommitdiff
path: root/src/string_func.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-04-25 15:17:17 +0000
committerrubidium <rubidium@openttd.org>2014-04-25 15:17:17 +0000
commitdb8d208bfc96f5b2c38c18f4f96de47987597208 (patch)
treede35aad176a75ef6aaa86ba71ad4e4eb78ac86f0 /src/string_func.h
parente61fe2123728dd4cd2eba3ed628905b337ddff19 (diff)
downloadopenttd-db8d208bfc96f5b2c38c18f4f96de47987597208.tar.xz
(svn r26507) -Cleanup: remove now unused custom strndup implementation
Diffstat (limited to 'src/string_func.h')
-rw-r--r--src/string_func.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/string_func.h b/src/string_func.h
index 474340a69..40ea30401 100644
--- a/src/string_func.h
+++ b/src/string_func.h
@@ -247,14 +247,6 @@ static inline bool IsWhitespace(WChar c)
#include <sys/param.h>
#endif
-/* strndup is a GNU extension */
-#if defined(_GNU_SOURCE) || (defined(__NetBSD_Version__) && 400000000 <= __NetBSD_Version__) || (defined(__FreeBSD_version) && 701101 <= __FreeBSD_version) || (defined(__DARWIN_C_LEVEL) && __DARWIN_C_LEVEL >= 200809L)
-# undef DEFINE_STRNDUP
-#else
-# define DEFINE_STRNDUP
-char *strndup(const char *s, size_t len);
-#endif /* strndup is available */
-
/* strcasestr is available for _GNU_SOURCE, BSD and some Apple */
#if defined(_GNU_SOURCE) || (defined(__BSD_VISIBLE) && __BSD_VISIBLE) || (defined(__APPLE__) && (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))) || defined(_NETBSD_SOURCE)
# undef DEFINE_STRCASESTR