Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
2ab43d78e1fe0f027f48a032d74c51a23c76302f
/
.
/
Tests
/
RunCMake
/
UnityBuild
/
per_config_c.c
blob: 081c7d3c8498b37fcdf3fe624befda6021b700ca [
file
] [
log
] [
blame
]
#ifdef
CFG_DEBUG
extern
void
per_config_c_debug
(
void
);
#endif
#ifdef
CFG_OTHER
extern
void
per_config_c_other
(
void
);
#endif
int
main
(
void
)
{
#ifdef
CFG_DEBUG
per_config_c_debug
();
#endif
#ifdef
CFG_OTHER
per_config_c_other
();
#endif
return
0
;
}