Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
putchar_native.c
Go to the documentation of this file.
1 #include <printf.h>
2 #include <stdio.h>
3 
4 extern long write(int, const char*, unsigned long);
5 
6 void _putchar(char ch)
7 {
8  (void)write(1, &ch, 1);
9 }
void _putchar(char ch)
Definition: putchar_native.c:6
long write(int, const char *, unsigned long)