diff options
author | Zeev Suraski <zeev@php.net> | 1999-11-27 00:48:50 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-11-27 00:48:50 +0000 |
commit | 85210ed9bfad18a03894cc4cfb78d20a1651c6f5 (patch) | |
tree | 9a12b1eb0fa2bbd7ba40b891dc5ffb9e965328ab /main/php.h | |
parent | 4481898ff7d4eb47f6127689c7cfe7d19b662571 (diff) | |
download | php-git-85210ed9bfad18a03894cc4cfb78d20a1651c6f5.tar.gz |
Get Win32 to compile again
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index ea59e21a47..47f0f367c8 100644 --- a/main/php.h +++ b/main/php.h @@ -104,6 +104,10 @@ size_t strlcpy(char *dst, const char *src, size_t siz); size_t strlcat(char *dst, const char *src, size_t siz); #endif +#ifndef HAVE_STRTOK_R +char *strtok_r(char *s, const char *delim, char **last); +#endif + #include "request_info.h" #if HAVE_LIBDL |