diff 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 diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/klibc/stdio.h Thu Dec 02 08:45:41 2010 +0200
1.3 @@ -0,0 +1,7 @@
1.4 +#ifndef STDIO_H_
1.5 +#define STDIO_H_
1.6 +
1.7 +int putchar(int c);
1.8 +int puts(const char *s);
1.9 +
1.10 +#endif /* STDIO_H_ */