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
}
_putchar
void _putchar(char ch)
Definition:
putchar_native.c:6
write
long write(int, const char *, unsigned long)
stdio.h
src
stdio
putchar_native.c
Generated by
1.8.15