Move mware/prog_avr module to drv/flash_avr; add kfile Ctor; merge flash read/write...
[bertos.git] / mware / sprintf_test.c
index a0706525e89936cd1580da74eab41f7c923f7156..4517214ffec9ee6a370ce1c476a05eb15116adf8 100755 (executable)
@@ -1,4 +1,4 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2004, 2005 Develer S.r.l. (http://www.develer.com/)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2006/07/19 12:56:28  bernie
+ *#* Convert to new Doxygen style.
+ *#*
+ *#* Revision 1.5  2005/11/04 17:47:26  bernie
+ *#* Fix one warning.
+ *#*
  *#* Revision 1.4  2005/11/04 17:43:27  bernie
  *#* Fix for LP64 architectures; Add some more tests.
  *#*
@@ -51,7 +57,7 @@ int main(UNUSED_ARG(int, argc), UNUSED_ARG(char **,argv))
        TEST("%ld",  -12345678L,   "-12345678");
        TEST("%lu", 4294967295UL, "4294967295");
        TEST("%hd",     -12345,       "-12345");
-       TEST("%hu",      65535UL,      "65535");
+       TEST("%hu",      65535U      "65535");
 
        TEST("%8d",      123,       "     123");
        TEST("%8d",     -123,       "    -123");