Author: tkreuzer Date: Mon Jan 3 20:00:25 2011 New Revision: 50279
URL: http://svn.reactos.org/svn/reactos?rev=50279&view=rev Log: fix build
Modified: trunk/reactos/lib/sdk/crt/printf/streamout.c
Modified: trunk/reactos/lib/sdk/crt/printf/streamout.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/streamou... ============================================================================== --- trunk/reactos/lib/sdk/crt/printf/streamout.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/printf/streamout.c [iso-8859-1] Mon Jan 3 20:00:25 2011 @@ -72,6 +72,7 @@ #endif
#define get_exp(f) floor(f == 0 ? 0 : (f >= 0 ? log10(f) : log10(-f))) +#define round(x) floor((x) + 0.5)
void #ifdef _LIBCNT