comparison error.h @ 0:01387a2e419e

initial version
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 07 Dec 2010 15:39:45 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:01387a2e419e
1 #ifdef _DEBUG_
2 # include <stdio.h>
3 # define __debug(...) do { \
4 fprintf(stderr, __VA_ARGS__); \
5 } while (0)
6 #else /* !_DEBUG_ */
7 # define __debug(...)
8 #endif