diff options
Diffstat (limited to 'src/string.cpp')
-rw-r--r-- | src/string.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/string.cpp b/src/string.cpp index 289031cfc..1ab68a274 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -362,7 +362,9 @@ char *strndup(const char *s, size_t len) memcpy(tmp, s, len); return tmp; } +#endif /* !_GNU_SOURCE */ +#ifdef DEFINE_STRCASESTR const char *strcasestr(const char *haystack, const char *needle) { size_t hay_len = strlen(haystack); @@ -376,4 +378,4 @@ const char *strcasestr(const char *haystack, const char *needle) return NULL; } -#endif /* !_GNU_SOURCE */ +#endif /* DEFINE_STRCASESTR */ |