[BACK]Return to printf.h CVS log [TXT][DIR] Up to [local] / funnyos / libkern

Annotation of funnyos/libkern/printf.h, Revision 1.1.1.1

1.1       init        1: /*
                      2:  * $Id: printf.h,v 1.1.1.1 2007/10/12 08:40:38 init Exp $
                      3:  */
                      4: #ifndef _LIBKERN_PRINTF_H
                      5: #define _LIBKERN_PRINTF_H
                      6:
                      7: void   printf(const char *fmt, ...);
                      8: void   kpanic(const char *fmt, ...);
                      9:
                     10: #define panic(x...) do { printf("%s: ", __func__); kpanic(x); } while (0)
                     11:
                     12: #endif /* not _LIBKERN_PRINTF_H */
                     13:

CVSweb