view error.h @ 18:47101546f030

merge
author tkaito@henri
date Tue, 07 Dec 2010 19:07:05 +0900
parents 01387a2e419e
children
line wrap: on
line source

#ifdef _DEBUG_
#  include <stdio.h>
#  define __debug(...) do {			\
	fprintf(stderr, __VA_ARGS__);		\
    } while (0)
#else /* !_DEBUG_ */
#  define __debug(...)
#endif