From: Daniel Stenberg Date: Wed, 25 Feb 2004 15:34:05 +0000 (+0000) Subject: disable the use of long double, we don't use it X-Git-Tag: upstream/7.37.1~13366 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9b2b7940e1498413e341a04fac6989538d465dd;p=platform%2Fupstream%2Fcurl.git disable the use of long double, we don't use it --- diff --git a/lib/mprintf.c b/lib/mprintf.c index 50a3969..d56ef03 100644 --- a/lib/mprintf.c +++ b/lib/mprintf.c @@ -931,7 +931,7 @@ static int dprintf_formatf( /* NOTE NOTE NOTE!! Not all sprintf() implementations returns number of output characters */ -#if SIZEOF_LONG_DOUBLE +#if 0 /*SIZEOF_LONG_DOUBLE*/ if (p->flags & FLAGS_LONG) /* This is for support of the 'long double' type */ (sprintf)(work, formatbuf, p->data.ldnum);