You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
544 B
29 lines
544 B
#ifdef EXPECT_COLOR
|
|
# if EXPECT_COLOR
|
|
# ifndef COLOR_ON
|
|
# error "COLOR_ON incorrectly not defined"
|
|
# endif
|
|
# ifdef COLOR_OFF
|
|
# error "COLOR_OFF incorrectly defined"
|
|
# endif
|
|
# else
|
|
# ifdef COLOR_ON
|
|
# error "COLOR_ON incorrectly defined"
|
|
# endif
|
|
# ifndef COLOR_OFF
|
|
# error "COLOR_OFF incorrectly not defined"
|
|
# endif
|
|
# endif
|
|
#else
|
|
# ifdef COLOR_ON
|
|
# error "COLOR_ON incorrectly defined"
|
|
# endif
|
|
# ifdef COLOR_OFF
|
|
# error "COLOR_OFF incorrectly defined"
|
|
# endif
|
|
#endif
|
|
|
|
void diag(void)
|
|
{
|
|
}
|