URI: 
       putchar.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       putchar.c (86B)
       ---
            1 #include <stdio.h>
            2 
            3 #undef putchar
            4 
            5 int
            6 putchar(int ch)
            7 {
            8         return putc(ch, stdout);
            9 }