blob: ebabfca9504de83d9eb2a395af8c2d684d460c8a [file] [log] [blame]
#ifndef __STDIO_H
#define __STDIO_H
#include <debug.h>
#include <printf.h>
void putc(char c);
int puts(const char *str);
int getc(char *c); // XXX not really getc
#endif