diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/replace/replace.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/lib/replace/replace.h b/source4/lib/replace/replace.h index 62adc1e5d8..7a1c4b5ce7 100644 --- a/source4/lib/replace/replace.h +++ b/source4/lib/replace/replace.h @@ -96,6 +96,10 @@ int rename(const char *zfrom, const char *zto); char *strcasestr(const char *haystack, const char *needle); #endif +#ifndef HAVE_STRTOK_R +char *strtok_r(char *s, const char *delim, char **save_ptr); +#endif + #ifndef HAVE_FTRUNCATE int ftruncate(int f,long l); #endif |