stm32bringup/putchar.c

13 lines
228 B
C

/* 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 */