From 3e85e584117f21b7d31e56274da4eb8585a39a9a Mon Sep 17 00:00:00 2001 From: mrkn Date: Wed, 29 Sep 2010 08:55:17 +0000 Subject: * ext/bigdecimal/bigdecimal.c (BIGDECIMAL_ENABLE_VPRINT): VPrint is usually disabled. It's only used in debugging. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/bigdecimal/bigdecimal.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ext/bigdecimal') diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index 9ed8a562a3..53fb678d12 100644 --- a/ext/bigdecimal/bigdecimal.c +++ b/ext/bigdecimal/bigdecimal.c @@ -14,6 +14,9 @@ */ /* #define BIGDECIMAL_DEBUG 1 */ +#ifdef BIGDECIMAL_DEBUG +# define BIGDECIMAL_ENABLE_VPRINT 1 +#endif #include "bigdecimal.h" #include @@ -3812,6 +3815,7 @@ Exit: return (int)val; } +#ifdef BIGDECIMAL_ENABLE_VPRINT /* * cntl_chr ... ASCIIZ Character, print control characters * Available control codes: @@ -3913,6 +3917,7 @@ VPrint(FILE *fp, const char *cntl_chr, Real *a) } return (int)nc; } +#endif /* BIGDECIMAL_ENABLE_VPRINT */ static void VpFormatSt(char *psz, size_t fFmt) -- cgit v1.2.3