diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-05-25 13:23:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:37 -0500 |
commit | aa01252bb35a6e13d0050efc1b3ccb9a80a827a6 (patch) | |
tree | ba352b6189551a82b6c8ff2dc864cce7b246af05 /source4/lib | |
parent | 373bf313cd21d5ba6b5f2f8dca6ba76852d3709a (diff) | |
download | samba-aa01252bb35a6e13d0050efc1b3ccb9a80a827a6.tar.gz samba-aa01252bb35a6e13d0050efc1b3ccb9a80a827a6.tar.bz2 samba-aa01252bb35a6e13d0050efc1b3ccb9a80a827a6.zip |
r15882: I forgot to add in this prototype for strtok_r()
(This used to be commit 971cead2ad66fca55a32639090d97b8186c1dae7)
Diffstat (limited to 'source4/lib')
-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 |