// // Created by rick on 06-02-21. // #ifndef NEW_KERNEL_KPRINTF_H #define NEW_KERNEL_KPRINTF_H int printf(const char *fmt, ...); int sprintf(char *target, const char *fmt, ...); #endif //NEW_KERNEL_KPRINTF_H