9 lines
96 B
C
9 lines
96 B
C
#ifdef REQUIRED
|
|
int required(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#else
|
|
# error "REQUIRED not defined"
|
|
#endif
|