diff options
author | Berk Geveci <berk.geveci@kitware.com> | 2004-02-04 14:42:50 (GMT) |
---|---|---|
committer | Berk Geveci <berk.geveci@kitware.com> | 2004-02-04 14:42:50 (GMT) |
commit | 2522153e5976e859b167513948bc8f2b7c87924f (patch) | |
tree | c58a3b12915349a54c07f9f9dc19e63f833e3777 /Tests/SimpleInstall/foo.c | |
parent | e6de1efcb8651d53bf03bc5cdeca124d6966e738 (diff) | |
download | CMake-2522153e5976e859b167513948bc8f2b7c87924f.zip CMake-2522153e5976e859b167513948bc8f2b7c87924f.tar.gz CMake-2522153e5976e859b167513948bc8f2b7c87924f.tar.bz2 |
ENH: Fix test on HP-UX
Diffstat (limited to 'Tests/SimpleInstall/foo.c')
-rw-r--r-- | Tests/SimpleInstall/foo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/SimpleInstall/foo.c b/Tests/SimpleInstall/foo.c index 5c7c3e6..45d5b2b 100644 --- a/Tests/SimpleInstall/foo.c +++ b/Tests/SimpleInstall/foo.c @@ -1,6 +1,6 @@ char* foo = "Foo"; -int SomeFunctionInFoo(int i) +int SomeFunctionInFoo() { - return i + 5; + return 5; } |