sas             Fri Jun 27 03:43:30 2003 EDT

  Modified files:              (Branch: PHP_4)
    /php-src/main       php.h 
  Log:
  undefine macros before defining them
  
Index: php-src/main/php.h
diff -u php-src/main/php.h:1.178.2.3 php-src/main/php.h:1.178.2.3.4.1
--- php-src/main/php.h:1.178.2.3        Sat Apr 19 14:35:51 2003
+++ php-src/main/php.h  Fri Jun 27 03:43:30 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php.h,v 1.178.2.3 2003/04/19 18:35:51 sas Exp $ */
+/* $Id: php.h,v 1.178.2.3.4.1 2003/06/27 07:43:30 sas Exp $ */
 
 #ifndef PHP_H
 #define 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
 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to