mirror of
https://github.com/rfivet/stm32bringup.git
synced 2024-12-19 07:16:22 -05:00
13 lines
228 B
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 */
|