putchar.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       putchar.c (78B)
       ---
            1 
            2 #include <stdio.h>
            3 
            4 #undef putchar
            5 int putchar(int c)
            6 {
            7         putc(c, stdout);
            8 }
            9