浏览代码

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

Alex
Alexander Neundorf 18 年之前
父节点
当前提交
61aa07b78c
共有 1 个文件被更改,包括 5 次插入5 次删除
  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()
 {