Kernel: initial version

This commit is contained in:
Taku Shimosawa
2011-09-22 18:57:51 +09:00
parent 1b054d6e1e
commit 1311337438
9 changed files with 148 additions and 0 deletions

9
kernel/include/kmsg.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef KMSG_H
#define KMSG_H
void kputs(char *buf);
int kprintf(const char *format, ...);
void kmsg_init(void);
#endif