2 #define _MINIX_DEBUG_H 1
4 /* For reminders of things to be fixed. */
5 #define FIXME(str) { static int fixme_warned = 0; \
7 printf("FIXME: %s:%d: %s\n", __FILE__, __LINE__, str);\
12 #define NOT_REACHABLE do { \
13 panic("NOT_REACHABLE at %s:%d", __FILE__, __LINE__); \
17 #define NOT_IMPLEMENTED do { \
18 panic("NOT_IMPLEMENTED at %s:%d", __FILE__, __LINE__); \
21 #endif /* _MINIX_DEBUG_H */