mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 12:19:54 -05:00
11 lines
88 B
C
11 lines
88 B
C
extern int b();
|
|
extern int c();
|
|
extern int d();
|
|
|
|
int main()
|
|
{
|
|
c();
|
|
b();
|
|
d();
|
|
}
|