X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fmware%2Fformatwr.c;h=8c79d81f2b6fec443c1db5f6ef67507b623a6654;hb=112e4b3e452a74564698d4b6dbc020532c200dc8;hp=6d725f971f6fa9808bfda8d2d46a35cef7e2fd82;hpb=1db589c13b1406b7f2b21243d3519c656ec454a1;p=bertos.git diff --git a/bertos/mware/formatwr.c b/bertos/mware/formatwr.c index 6d725f97..8c79d81f 100644 --- a/bertos/mware/formatwr.c +++ b/bertos/mware/formatwr.c @@ -51,16 +51,16 @@ * \endcode * * Code size on AVR4 with GCC 3.4.1 (-O2): - * PRINTF_FULL 2912byte (0xB60) - * PRINTF_NOFLOAT 1684byte (0x694) - * PRINTF_REDUCED 924byte (0x39C) - * PRINTF_NOMODIFIERS 416byte (0x1A0) + * \li PRINTF_FULL 2912byte (0xB60) + * \li PRINTF_NOFLOAT 1684byte (0x694) + * \li PRINTF_REDUCED 924byte (0x39C) + * \li PRINTF_NOMODIFIERS 416byte (0x1A0) * * Code/data size in words on DSP56K with CodeWarrior 6.0: - * PRINTF_FULL 1493/45 - * PRINTF_NOFLOAT 795/45 - * PRINTF_REDUCED 482/0 - * PRINTF_NOMODIFIERS 301/0 + * \li PRINTF_FULL 1493/45 + * \li PRINTF_NOFLOAT 795/45 + * \li PRINTF_REDUCED 482/0 + * \li PRINTF_NOMODIFIERS 301/0 * * The reduced version of formatter is suitable when program size is critical * rather than formatting power. This routine uses less than 20 bytes of @@ -82,7 +82,7 @@ #include "cfg/cfg_formatwr.h" /* CONFIG_ macros */ #include /* ASSERT */ -#include +#include #include #ifndef CONFIG_PRINTF_N_FORMATTER @@ -844,7 +844,7 @@ FLOATING_CONVERSION: { case 'l': case 'z': - /* for the 'z' modifier, we make this assmumption */ + /* for the 'z' modifier, we make this assumption */ STATIC_ASSERT(sizeof(size_t) == sizeof(long)); l_modifier = true; format++;