fxlibc/src/libc/stdio/putc.c

12 lines
130 B
C
Raw Normal View History

2021-05-09 17:34:00 +02:00
#include <stdio.h>
#include <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);
}