Travis Geiselbrecht | eb94605 | 2008-09-07 22:32:49 -0700 | [diff] [blame] | 1 | #ifndef __STDIO_H |
2 | #define __STDIO_H | ||||
3 | |||||
4 | #include <debug.h> | ||||
5 | #include <printf.h> | ||||
6 | |||||
7 | void putc(char c); | ||||
8 | int puts(const char *str); | ||||
9 | int getc(char *c); // XXX not really getc | ||||
10 | |||||
11 | #endif | ||||
12 |