From 39e282254b20e4eb262dd4c0f3064001cace5d59 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Wed, 30 May 2001 05:00:39 +0000 Subject: place nice with other libraries. --- main/php.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index 533d39ae1c..513edb3fc7 100644 --- a/main/php.h +++ b/main/php.h @@ -96,11 +96,13 @@ } #ifndef HAVE_STRLCPY -PHPAPI size_t strlcpy(char *dst, const char *src, size_t siz); +PHPAPI size_t php_strlcpy(char *dst, const char *src, size_t siz); +#define strlcpy php_strlcpy #endif #ifndef HAVE_STRLCAT -PHPAPI size_t strlcat(char *dst, const char *src, size_t siz); +PHPAPI size_t php_strlcat(char *dst, const char *src, size_t siz); +#define strlcat php_strlcat #endif #ifndef HAVE_STRTOK_R -- cgit v1.2.1