From 503bb3bedb847ed99722208da1878ab56f3b5e9d Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Thu, 20 Apr 2000 17:40:03 +0000 Subject: - Export strlcat()/strcpy() for Frank. - Windows doesn't have lstat(). --- main/php.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/php.h') 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 -- cgit v1.2.1