diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-08-28 14:59:08 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-08-28 14:59:08 (GMT) |
commit | 5615d4719833a672427b4792594aa55f3bf4a950 (patch) | |
tree | b0344318a900b878ee5d7a00fb2ded8871e09256 /Tests/SourceGroups/main.c | |
parent | bd8b733d5e3df7ae584090d4558b1617489eae8b (diff) | |
download | CMake-5615d4719833a672427b4792594aa55f3bf4a950.zip CMake-5615d4719833a672427b4792594aa55f3bf4a950.tar.gz CMake-5615d4719833a672427b4792594aa55f3bf4a950.tar.bz2 |
COMP: enable ANSI C, this should make it work with the HP-UX compiler
Alex
Diffstat (limited to 'Tests/SourceGroups/main.c')
-rw-r--r-- | Tests/SourceGroups/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Tests/SourceGroups/main.c b/Tests/SourceGroups/main.c index 2c1002e..212e64b 100644 --- a/Tests/SourceGroups/main.c +++ b/Tests/SourceGroups/main.c @@ -1,10 +1,10 @@ #include <stdio.h> -int foo(); -int bar(); -int foobar(); -int barbar(); -int baz(); +extern int foo(void); +extern int bar(void); +extern int foobar(void); +extern int barbar(void); +extern int baz(void); int main() { |