kolibrios/programs/develop/ktcc/trunk/libc/stdio/putchar.c

7 lines
83 B
C
Raw Normal View History

#include <stdio.h>
int putchar ( int ch )
{
printf("%c", ch);
return ch;
}