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

8 lines
100 B
C
Raw Normal View History

2010-12-14 16:40:47 +01:00
#include <stdio.h>
void (_putchar(int)) = uart1_putchar;
void putchar(int c) {
_putchar(c);
}