diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-27 13:22:57 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-27 13:22:57 (GMT) |
commit | 482eef71122acf6408e0d5bd02161bb832155f08 (patch) | |
tree | 61500ef9273621f9d8816b2286ed6c8838137e30 /Tests/SubDir/AnotherSubdir/testfromsubdir.c | |
parent | c19a70b3ada66a59c7a0ff78bf1a4a1cd557db9a (diff) | |
download | CMake-482eef71122acf6408e0d5bd02161bb832155f08.zip CMake-482eef71122acf6408e0d5bd02161bb832155f08.tar.gz CMake-482eef71122acf6408e0d5bd02161bb832155f08.tar.bz2 |
BUG: Fix aus source dir and add better testing of it
Diffstat (limited to 'Tests/SubDir/AnotherSubdir/testfromsubdir.c')
-rw-r--r-- | Tests/SubDir/AnotherSubdir/testfromsubdir.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Tests/SubDir/AnotherSubdir/testfromsubdir.c b/Tests/SubDir/AnotherSubdir/testfromsubdir.c index b784b16..34b6e7a 100644 --- a/Tests/SubDir/AnotherSubdir/testfromsubdir.c +++ b/Tests/SubDir/AnotherSubdir/testfromsubdir.c @@ -1,10 +1,14 @@ #include <stdio.h> -const char* secondone(); +void secondone(); +void pair_stuff(); +void vcl_stuff(); int main() { printf("Hello from subdirectory\n"); - printf("SO: %s\n", secondone()); + secondone(); + pair_stuff(); + vcl_stuff(); return 0; } |