diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-26 19:30:02 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-26 19:30:02 (GMT) |
commit | ae47302529e9ee040a45ad9a8636e6116e880d0c (patch) | |
tree | f75d758cb83ae21d7c02248e75cd6a3d92457f1d /Tests/SimpleCOnly/main.c | |
parent | 25a425ecf09fccc804758da1015f93fce724f856 (diff) | |
download | CMake-ae47302529e9ee040a45ad9a8636e6116e880d0c.zip CMake-ae47302529e9ee040a45ad9a8636e6116e880d0c.tar.gz CMake-ae47302529e9ee040a45ad9a8636e6116e880d0c.tar.bz2 |
ENH: add a SimpleCOnly test, this is needed e.g. for testing sdcc since this
doesn't support C++ and also doesn't have a printf() implementation by
default
-add a test for mingw cross compiler
Alex
Diffstat (limited to 'Tests/SimpleCOnly/main.c')
-rw-r--r-- | Tests/SimpleCOnly/main.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/SimpleCOnly/main.c b/Tests/SimpleCOnly/main.c new file mode 100644 index 0000000..e4df685 --- /dev/null +++ b/Tests/SimpleCOnly/main.c @@ -0,0 +1,12 @@ +#include <stdio.h> + +extern int foo(); +extern int bar(); + +int main() +{ + int i=foo(); + int k=bar(); + i=i*k; + return i; +} |