xv6-k210/kernel/include/printf.h

15 lines
188 B
C

#ifndef __PRINTF_H
#define __PRINTF_H
void printfinit(void);
void printf(char *fmt, ...);
void panic(char *s) __attribute__((noreturn));
void backtrace();
void print_logo();
#endif