Parcourir la source

COMP: maybe it compiles this way with the HP-UX compiler

Alex
Alexander Neundorf il y a 18 ans
Parent
commit
61aa07b78c
1 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. 5 5
      Tests/SourceGroups/main.c

+ 5 - 5
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()
 {