Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
d1be722330a0899f12bd777274e2bc1238b10ce4
/
.
/
Tests
/
SourceGroups
/
sub2
/
main.c
blob: 6a195bcdefebefc529c338c49ad36bc044987cdc [
file
] [
log
] [
blame
]
#include
<stdio.h>
extern
int
qax
(
void
);
extern
int
qux
(
void
);
int
main
(
void
)
{
printf
(
"qux: %d qax: %d\n"
,
qux
(),
qax
());
return
0
;
}