view error.h @ 35:3b92a4b17049 default tip

fix for macosx Yosemite
author Nozomi
date Thu, 19 May 2016 18:18:34 +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