source: trunk/sys/dietlibc/putchar.c @ 5

Last change on this file since 5 was 1, checked in by alain, 8 years ago

First import

File size: 84 bytes
Line 
1#include <stdio.h>
2
3#undef putchar
4int putchar(int c) {
5  return fputc(c,stdout);
6}
Note: See TracBrowser for help on using the repository browser.