kern

view src/klibc/stdio.h @ 1:ebe5e0e44a9d

pretty much finished the code for article 1, might do minor adjustments though
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 02 Dec 2010 08:45:41 +0200
parents
children 633e35c64772
line source
1 #ifndef STDIO_H_
2 #define STDIO_H_
4 int putchar(int c);
5 int puts(const char *s);
7 #endif /* STDIO_H_ */