fxlibc/src/libc/stdio/putc.c

12 lines
144 B
C
Raw Normal View History

#include <fxlibc/stdio.h>
#include <fxlibc/unistd.h>
2020-09-17 19:27:01 +02:00
int putchar(int c)
2020-09-17 19:27:01 +02:00
{
char n;
n = (char)c;
write(STDOUT_FILENO, &n, 1);
return (n);
}