1 2 3 4 5 6 7 8
#ifndef _KPRINTF_H #define _KPRINTF_H int puts(const char *); void printf_init(void); void printf(const char *, ...); #endif /* _KPRINTF_H */