mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-20 19:55:10 +08:00
5 lines
120 B
C
5 lines
120 B
C
extern int foo1();
|
|
extern int bar2(void);
|
|
int bar1(void) { return bar2(); }
|
|
int bar1_from_bar3(void) { return foo1(); }
|