diff options
author | Sascha Schumann <sas@php.net> | 1999-11-26 13:33:41 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-11-26 13:33:41 +0000 |
commit | 5d34e43f8d238748d1659cd92c86bae65edd189b (patch) | |
tree | 856f983f5ed7462549b37a6ce1a83ab6dfc52aed /main/strlcpy.c | |
parent | 327e8f7e0696007fd83cc42686368eac4f5734d0 (diff) | |
download | php-git-5d34e43f8d238748d1659cd92c86bae65edd189b.tar.gz |
Include php_config.h in both files, otherwise HAVE_STRLCAT/HAVE_STRLCPY
will never be defined, even on systems which have these functions.
Diffstat (limited to 'main/strlcpy.c')
-rw-r--r-- | main/strlcpy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/strlcpy.c b/main/strlcpy.c index 0d7d964e70..fe6760ca76 100644 --- a/main/strlcpy.c +++ b/main/strlcpy.c @@ -1,3 +1,5 @@ +#include "php_config.h" + #ifndef HAVE_STRLCPY /* $OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp $ */ |