CMake/Tests/Dependency/Case1/main.c

11 lines
85 B
C

extern int b();
extern int c();
extern int d();
int main()
{
c();
b();
d();
}