blob: ebabfca9504de83d9eb2a395af8c2d684d460c8a [file] [log] [blame]
Travis Geiselbrechteb946052008-09-07 22:32:49 -07001#ifndef __STDIO_H
2#define __STDIO_H
3
4#include <debug.h>
5#include <printf.h>
6
7void putc(char c);
8int puts(const char *str);
9int getc(char *c); // XXX not really getc
10
11#endif
12