Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
3fc2dcd80156d9e3812ef787314b220f05063f62
/
.
/
Tests
/
ImportedSameName
/
main.c
blob: a0cb27feefbb39cc659d5d5d6c6bc53d808b4226 [
file
] [
log
] [
blame
]
#ifndef
DEF_A
# error "DEF_A not defined"
#endif
#ifndef
DEF_B
# error "DEF_B not defined"
#endif
extern
void
a
(
void
);
extern
void
b
(
void
);
int
main
(
void
)
{
a
();
b
();
return
0
;
}