mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 22:31:18 -05:00
7 lines
91 B
C
7 lines
91 B
C
extern int myc(void);
|
|
extern int mycxx(void);
|
|
int main(void)
|
|
{
|
|
return myc() + mycxx();
|
|
}
|