fxlibc/src/libc/stdio/putc.c

12 lines
130 B
C

#include <stdio.h>
#include <unistd.h>
int putchar(int c)
{
char n;
n = (char)c;
write(STDOUT_FILENO, &n, 1);
return (n);
}