summaryrefslogtreecommitdiff
path: root/acconfig.h.in
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-12-19 14:39:41 +0000
committerSascha Schumann <sas@php.net>1999-12-19 14:39:41 +0000
commitcb45c2ea551ff92a91940bc5e8e1925b8834d0a3 (patch)
treece6612984d81be3a81c2104bed212a3a47296a16 /acconfig.h.in
parent143b02d8a4f4d3dea5c823b44d144690da3ae33e (diff)
downloadphp-git-cb45c2ea551ff92a91940bc5e8e1925b8834d0a3.tar.gz
Use zend_sprintf by default (which is defined to sprintf, if the system's
sprintf is useable).
Diffstat (limited to 'acconfig.h.in')
-rw-r--r--acconfig.h.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/acconfig.h.in b/acconfig.h.in
index 760d55e2a1..fba8562865 100644
--- a/acconfig.h.in
+++ b/acconfig.h.in
@@ -113,9 +113,6 @@
/* Define if you have broken header files like SunOS 4 */
#define MISSING_FCLOSE_DECL 0
-/* Define if you have broken sprintf function like SunOS 4 */
-#define BROKEN_SPRINTF 0
-
/* Define to compile PHP/Zend thread safe */
#undef ZTS
@@ -124,3 +121,5 @@
/* Define if struct sockaddr contains the field sa_len */
#undef HAVE_SOCKADDR_SA_LEN
+
+#define sprintf zend_sprintf