mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05: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(); }
|