mirror of
https://github.com/reactos/CMake.git
synced 2024-11-26 04:50:24 +00:00
7 lines
87 B
C
7 lines
87 B
C
|
extern int myc(void);
|
||
|
extern int mycxx(void);
|
||
|
int main()
|
||
|
{
|
||
|
return myc() + mycxx();
|
||
|
}
|