Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
putchar_native.c File Reference
#include <printf.h>
#include <stdio.h>
Include dependency graph for putchar_native.c:

Go to the source code of this file.

Functions

long write (int, const char *, unsigned long)
 
void _putchar (char ch)
 

Function Documentation

◆ _putchar()

void _putchar ( char  ch)

Definition at line 6 of file putchar_native.c.

7 {
8  (void)write(1, &ch, 1);
9 }
long write(int, const char *, unsigned long)

References write().

Referenced by putchar().

◆ write()

long write ( int  ,
const char *  ,
unsigned long   
)

Referenced by _putchar().