diff options
author | Sterling Hughes <sterling@php.net> | 2001-05-30 05:00:39 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-05-30 05:00:39 +0000 |
commit | 39e282254b20e4eb262dd4c0f3064001cace5d59 (patch) | |
tree | c1272ff2177402b5f54fdb7a2c89c9d7b51f13e5 /main/php.h | |
parent | daefeb59d52f7da4b827b9c369529eedda4be4ba (diff) | |
download | php-git-39e282254b20e4eb262dd4c0f3064001cace5d59.tar.gz |
place nice with other libraries.
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 6 |
1 files changed, 4 insertions, 2 deletions
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 |