X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fsprintf.c;h=def6d20f035a207968700ce39653f8786f98ed78;hb=042e6fcbf5f91322305e903ed1ba1ebe99447660;hp=7a8e62af3c37bdf21e309de3d3ce261d9df0d664;hpb=37d3acaa622b7f695ce57578e56311d031a22d22;p=bertos.git diff --git a/mware/sprintf.c b/mware/sprintf.c index 7a8e62af..def6d20f 100755 --- a/mware/sprintf.c +++ b/mware/sprintf.c @@ -2,7 +2,7 @@ * \file * * * \version $Id$ @@ -14,6 +14,14 @@ /* * $Log$ + * Revision 1.3 2004/06/27 15:20:26 aleph + * Change UNUSED() macro to accept two arguments: type and name; + * Add macro GNUC_PREREQ to detect GCC version during build; + * Some spacing cleanups and typo fix + * + * Revision 1.2 2004/06/03 11:27:09 bernie + * Add dual-license information. + * * Revision 1.1 2004/05/23 15:43:16 bernie * Import mware modules. * @@ -50,7 +58,7 @@ static void __str_put_char(char c, void *ptr) (*((char **)ptr))++; } -static void __null_put_char(UNUSED(char c), UNUSED(void *ptr)) +static void __null_put_char(UNUSED(char, c), UNUSED(void *, ptr)) { /* nop */ }