diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-08-28 12:36:31 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-08-28 12:36:31 (GMT) |
commit | 61aa07b78c0adc726228ab93cb22e24882a6a8f9 (patch) | |
tree | 775dd470e8652b0debae189e4d322e2c424f9a7e /Tests/SourceGroups | |
parent | b2ad9f104452ef9259466cdebf1a0d6e825ea649 (diff) | |
download | CMake-61aa07b78c0adc726228ab93cb22e24882a6a8f9.zip CMake-61aa07b78c0adc726228ab93cb22e24882a6a8f9.tar.gz CMake-61aa07b78c0adc726228ab93cb22e24882a6a8f9.tar.bz2 |
COMP: maybe it compiles this way with the HP-UX compiler
Alex
Diffstat (limited to 'Tests/SourceGroups')
-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 212e64b..2c1002e 100644 --- a/Tests/SourceGroups/main.c +++ b/Tests/SourceGroups/main.c @@ -1,10 +1,10 @@ #include <stdio.h> -extern int foo(void); -extern int bar(void); -extern int foobar(void); -extern int barbar(void); -extern int baz(void); +int foo(); +int bar(); +int foobar(); +int barbar(); +int baz(); int main() { |