summaryrefslogtreecommitdiff
path: root/main/snprintf.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-04-11 07:28:24 +0000
committerMarcus Boerger <helly@php.net>2002-04-11 07:28:24 +0000
commite76b401f329beac915a0aea3cbc582c0d1cbe149 (patch)
tree091f1b9db24c5ad6e879ccbc07b1cf4179d0aa96 /main/snprintf.c
parent628e639c0834fddfa9c9863fe5f53679e6bdbd0a (diff)
downloadphp-git-e76b401f329beac915a0aea3cbc582c0d1cbe149.tar.gz
fix build (hopefully for BSD, too)
Diffstat (limited to 'main/snprintf.c')
-rw-r--r--main/snprintf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/main/snprintf.c b/main/snprintf.c
index 3d26318429..f4cd19838d 100644
--- a/main/snprintf.c
+++ b/main/snprintf.c
@@ -251,9 +251,6 @@ char *
return (p);
}
-#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) || defined(BROKEN_SNPRINTF) || defined(BROKEN_VSNPRINTF)
-
-
#ifdef HAVE_GCVT
#define ap_php_ecvt ecvt
@@ -426,6 +423,8 @@ char *
#endif /* HAVE_CVT */
+#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) || defined(BROKEN_SNPRINTF) || defined(BROKEN_VSNPRINTF)
+
/*
* NUM_BUF_SIZE is the size of the buffer used for arithmetic conversions
*