/* * $Id: printf.h,v 1.1 2007/10/16 08:41:04 init Exp $ */ #ifndef _LIBKERN_PRINTF_H #define _LIBKERN_PRINTF_H void printf(const char *fmt, ...); void kpanic(const char *fmt, ...); #define panic(x...) do { printf("%s: ", __func__); kpanic(x); } while (0) #endif /* not _LIBKERN_PRINTF_H */