diff --git a/libs/libinit/printf.c b/libs/libinit/printf.c index 3263ee8..339fd0c 100644 --- a/libs/libinit/printf.c +++ b/libs/libinit/printf.c @@ -77,12 +77,12 @@ // Support for the decimal notation floating point conversion specifiers (%f, %F) #ifndef PRINTF_SUPPORT_DECIMAL_SPECIFIERS -#define PRINTF_SUPPORT_DECIMAL_SPECIFIERS 1 +// #define PRINTF_SUPPORT_DECIMAL_SPECIFIERS 1 #endif // Support for the exponential notation floating point conversion specifiers (%e, %g, %E, %G) #ifndef PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS -#define PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS 1 +// #define PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS 1 #endif // Support for the length write-back specifier (%n)