kern

view src/klibc/stdio.c @ 2:86781ef20689

added hardware scrolling, memset16 and temporary keyboard input for testing
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 04 Dec 2010 08:04:43 +0200
parents ebe5e0e44a9d
children 633e35c64772
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 putchar('\n');
11 return 0;
12 }