Update kservice.c

This commit is contained in:
Bernard Xiong 2013-06-24 00:09:52 +08:00
parent 0bb5eb18b9
commit b23dd15990
1 changed files with 1 additions and 6 deletions

View File

@ -18,6 +18,7 @@
* 2012-07-18 Arda add the alignment display for signed integer
* 2012-11-23 Bernard fix IAR compiler error.
* 2012-12-22 Bernard fix rt_kprintf issue, which found by Grissiom.
* 2013-06-24 Bernard remove rt_kprintf if RT_USING_CONSOLE is not defined.
*/
#include <rtthread.h>
@ -1121,12 +1122,6 @@ void rt_kprintf(const char *fmt, ...)
va_end(args);
}
RTM_EXPORT(rt_kprintf);
#else
void rt_kprintf(const char *fmt, ...)
{
}
RTM_EXPORT(rt_kprintf);
#endif
#ifdef RT_USING_HEAP