Vhex-kernel/src/lib/libc/stdio/putc.c

12 lines
135 B
C

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