summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-04-20 17:40:03 +0000
committerAndi Gutmans <andi@php.net>2000-04-20 17:40:03 +0000
commit503bb3bedb847ed99722208da1878ab56f3b5e9d (patch)
tree40ceec254e6e67d4ddc393ea51f799c2cf6eeb09 /main/php.h
parent883bd2b1de0afae5a3b9f36c0778ba0b08390e25 (diff)
downloadphp-git-503bb3bedb847ed99722208da1878ab56f3b5e9d.tar.gz
- Export strlcat()/strcpy() for Frank.
- Windows doesn't have lstat().
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php.h b/main/php.h
index 97596d16d3..b13a60c6fe 100644
--- a/main/php.h
+++ b/main/php.h
@@ -96,11 +96,11 @@ extern unsigned char second_arg_allow_ref[];
#endif
#ifndef HAVE_STRLCPY
-size_t strlcpy(char *dst, const char *src, size_t siz);
+PHPAPI size_t strlcpy(char *dst, const char *src, size_t siz);
#endif
#ifndef HAVE_STRLCAT
-size_t strlcat(char *dst, const char *src, size_t siz);
+PHPAPI size_t strlcat(char *dst, const char *src, size_t siz);
#endif
#ifndef HAVE_STRTOK_R