From 9979003eebf28200c29b63a8001cc670375e3a42 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Fri, 27 Jun 2003 07:43:42 +0000 Subject: undefine macros before defining them --- main/php.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index f5901cd9ab..aa837ea8ba 100644 --- a/main/php.h +++ b/main/php.h @@ -123,11 +123,13 @@ #ifndef HAVE_STRLCPY PHPAPI size_t php_strlcpy(char *dst, const char *src, size_t siz); +#undef strlcpy #define strlcpy php_strlcpy #endif #ifndef HAVE_STRLCAT PHPAPI size_t php_strlcat(char *dst, const char *src, size_t siz); +#undef strlcat #define strlcat php_strlcat #endif -- cgit v1.2.1