mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
ae47302529
doesn't support C++ and also doesn't have a printf() implementation by default -add a test for mingw cross compiler Alex
13 lines
128 B
C
13 lines
128 B
C
#include <stdio.h>
|
|
|
|
extern int foo();
|
|
extern int bar();
|
|
|
|
int main()
|
|
{
|
|
int i=foo();
|
|
int k=bar();
|
|
i=i*k;
|
|
return i;
|
|
}
|