9os

Experimental kernel using plan9 ideas for embedded device
git clone git://git.simple-cc.org/9os
Log | Files | Refs | README | LICENSE

putchar.c (85B)


      1 #include <stdio.h>
      2 #undef putchar
      3 
      4 int
      5 putchar(int ch)
      6 {
      7 	return putc(ch, stdout);
      8 }