From 03ed88bd32a0b11f15a82dedb07f7b98e253be7c Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 17 May 2002 06:19:28 +0000 Subject: [PATCH] conditionalize #include of stdio.h --- src/libFLAC/lpc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libFLAC/lpc.c b/src/libFLAC/lpc.c index 46c3034..c0165c3 100644 --- a/src/libFLAC/lpc.c +++ b/src/libFLAC/lpc.c @@ -18,10 +18,12 @@ */ #include -#include #include "FLAC/assert.h" #include "FLAC/format.h" #include "private/lpc.h" +#if defined DEBUG || defined FLAC__OVERFLOW_DETECT || defined FLAC__OVERFLOW_DETECT_VERBOSE +#include +#endif #ifndef M_LN2 /* math.h in VC++ doesn't seem to have this (how Microsoft is that?) */ -- 2.7.4