diff options
author | Stig Bakken <ssb@php.net> | 1999-09-15 09:35:20 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-09-15 09:35:20 +0000 |
commit | 1740e6ee4ef01c2130db756a17fe8d8665438231 (patch) | |
tree | f51ba619125a2375f705db0aa25691958e3d31d3 /main/php.h | |
parent | 36101a55ade279df49aed987da6f77b6de5476da (diff) | |
download | php-git-1740e6ee4ef01c2130db756a17fe8d8665438231.tar.gz |
Clean up the strlcat/strlcpy checks.
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php.h b/main/php.h index 7b87116fc5..4f635a21e8 100644 --- a/main/php.h +++ b/main/php.h @@ -95,11 +95,11 @@ extern unsigned char second_arg_allow_ref[]; #include <alloca.h> #endif -#if !HAVE_STRLCPY +#ifndef HAVE_STRLCPY size_t strlcpy(char *dst, const char *src, size_t siz); #endif -#if !HAVE_STRLCAT +#ifndef HAVE_STRLCAT size_t strlcat(char *dst, const char *src, size_t siz); #endif |