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

Last change on this file since 76 was 1, checked in by alain, 7 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.