Add memtest support.
[syslinux-debian/hramrach.git] / com32 / lib / putchar.c
blob6f993aa59143ab43ddc44ddd682baabc799e9141
1 /*
2 * putchar.c
4 * gcc "printf decompilation" expects this to exist...
5 */
7 #include <stdio.h>
9 #undef putchar
11 int putchar(int c)
13 unsigned char ch = c;
15 return _fwrite(&ch, 1, stdout) == 1 ? ch : EOF;