Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
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
;
}