fxlibc/src/stdio/putc.c

12 lines
127 B
C
Raw Normal View History

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