From 9e5b0de828c419f8a9f84e167656b589ab9f6ef3 Mon Sep 17 00:00:00 2001 From: Jason Greene Date: Tue, 5 Jun 2001 16:35:56 +0000 Subject: Add the capibility to to allow ap_php_(v)snprintf to replace (v)snprintf if the platform has a broken (v)snprintf, or in my case, if a library included by a module redifines snprintf incorrectly. --- main/php.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index 24173462ab..e7f0f114ee 100644 --- a/main/php.h +++ b/main/php.h @@ -188,7 +188,7 @@ char *strerror(int); #define LONG_MIN (- LONG_MAX - 1) #endif -#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) || defined(BROKEN_SPRINTF) +#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) || defined(BROKEN_SPRINTF) || defined(BROKEN_SNPRINTF) || defined(BROKEN_VSNPRINTF) #include "snprintf.h" #endif -- cgit v1.2.1