14 lines
419 B
C
14 lines
419 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;
|
|
}
|
|
/*---------------------------------------------------------------------------*/
|