kern

view src/klibc/stdio.c @ 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 86781ef20689
line source
1 #include <stdio.h>
3 /* putchar is defined in term.c */
5 int puts(const char *s)
6 {
7 while(*s) {
8 putchar(*s++);
9 }
10 return 0;
11 }