cLK/lk/include/stdio.h

13 lines
174 B
C
Raw Permalink Normal View History

2011-03-25 21:39:33 +00:00
#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