Contiki 2.5
uart0-putchar.c
1 #include "dev/uart0.h"
2 #include <stdio.h>
3 
4 int
5 putchar(int c)
6 {
7  uart0_writeb((char)c);
8  return c;
9 }