view error.h @ 66:f27a6af6514c

SchedRegister, game_task.h etc...
author tkaito
date Thu, 17 Feb 2011 10:56:56 +0900
parents 435ac1cdb64e
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