Files
jsix/src/libraries/libc/stdio/putchar.cpp
Justin C. Miller 346c172b32 [libc] Add new libc
This new libc is mostly from scratch, with *printf() functions provided
by Marco Paland and Eyal Rozenberg's tiny printf library, and malloc and
friends provided by dlmalloc.
2022-02-06 21:39:04 -08:00

4 lines
52 B
C++

#include <stdio.h>
int putchar(char c) {return 0;}