blob: 89c7a6be3340e0b1f86f88ab305bac1644902cd4 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifdef CFG_DEBUG
# error "per_config_c_other built with CFG_DEBUG"
#endif
#ifndef CFG_OTHER
# error "per_config_c_other built without CFG_OTHER"
#endif
void per_config_c_other(void)
{
}
|