repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated package versions
[minix.git]
/
include
/
minix
/
debug.h
blob
808d73583d6d182fdbb9bdcf25f0ef6c0732664c
1
#ifndef _MINIX_DEBUG_H
2
#define _MINIX_DEBUG_H 1
3
4
/* For reminders of things to be fixed. */
5
#define FIXME(str) { static int fixme_warned = 0; \
6
if(!fixme_warned) { \
7
printf(
"FIXME: %s:%d: %s
\n
"
, __FILE__, __LINE__, str);\
8
fixme_warned = 1; \
9
} \
10
}
11
12
#endif
/* _MINIX_DEBUG_H */
13