X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fformatwr.c;h=f758c2fda5b2b42adfad906b5b2b5c90e6f256dc;hb=c273ae81bac91c7eaaecb71482992803539dd0eb;hp=d63aa68463ce2b9a9c3c88eadf7114d8013cce44;hpb=194888172ecf720305a563990afe845248fd44ab;p=bertos.git diff --git a/mware/formatwr.c b/mware/formatwr.c index d63aa684..f758c2fd 100755 --- a/mware/formatwr.c +++ b/mware/formatwr.c @@ -42,6 +42,9 @@ /* * $Log$ + * Revision 1.4 2004/07/21 00:20:20 bernie + * Allow completely disabling printf()-like formatter. + * * Revision 1.3 2004/07/18 22:00:15 bernie * Reorganize configuration parameters to match DevLib's convention. * @@ -53,6 +56,8 @@ * */ +#ifndef CONFIG_PRINTF_DISABLED + #include "formatwr.h" #include /* progmem macros */ #include /* CONFIG_ macros */ @@ -802,3 +807,5 @@ CONVERSION_LOOP: } #endif /* CONFIG_PRINTF_REDUCED */ } + +#endif /* CONFIG_PRINTF_DISABLED */