1
0
mirror of https://github.com/rfivet/stm32bringup.git synced 2024-06-09 01:20:44 +00:00
stm32bringup/putchar.c

13 lines
228 B
C
Raw Normal View History

/* putchar.c -- write a character to stdout */
/* Copyright (c) 2020 Renaud Fivet */
#include <stdio.h>
#include "system.h" /* kputc() */
int putchar( int c) {
kputc( c) ;
return c ;
}
/* end of putchar.c */