1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/chronos/putchar.c

13 lines
121 B
C
Raw Normal View History

static void _dummy(int c)
{
2010-12-14 16:40:47 +01:00
}
void (*_putchar)(int c) = _dummy;
int putchar(int c)
{
_putchar(c);
return c;
}