mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-04 13:06:38 +00:00
b105b40e9a
Added some replacements for newlib's stdout. Added missing startup code. Some minor fixes.
12 lines
179 B
C
12 lines
179 B
C
#include <stdio.h>
|
|
#include <debug-uart.h>
|
|
#include <string.h>
|
|
|
|
int
|
|
puts(const char *str)
|
|
{
|
|
dbg_send_bytes((unsigned char*)str, strlen(str));
|
|
dbg_putchar('\n');
|
|
return 0;
|
|
}
|