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/strlcpy.c | |
parent | daefeb59d52f7da4b827b9c369529eedda4be4ba (diff) | |
download | php-git-39e282254b20e4eb262dd4c0f3064001cace5d59.tar.gz |
place nice with other libraries.
Diffstat (limited to 'main/strlcpy.c')
-rw-r--r-- | main/strlcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/strlcpy.c b/main/strlcpy.c index 382d8ba56e..68b5147ac6 100644 --- a/main/strlcpy.c +++ b/main/strlcpy.c @@ -43,7 +43,7 @@ static char *rcsid = "$OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp * will be copied. Always NUL terminates (unless siz == 0). * Returns strlen(src); if retval >= siz, truncation occurred. */ -PHPAPI size_t strlcpy(dst, src, siz) +PHPAPI size_t php_strlcpy(dst, src, siz) char *dst; const char *src; size_t siz; |