summaryrefslogtreecommitdiff
path: root/Tests/SourceGroups/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SourceGroups/main.c')
-rw-r--r--Tests/SourceGroups/main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/SourceGroups/main.c b/Tests/SourceGroups/main.c
new file mode 100644
index 000000000..212e64baa
--- /dev/null
+++ b/Tests/SourceGroups/main.c
@@ -0,0 +1,13 @@
+#include <stdio.h>
+
+extern int foo(void);
+extern int bar(void);
+extern int foobar(void);
+extern int barbar(void);
+extern int baz(void);
+
+int main()
+{
+ printf("foo: %d bar: %d foobar: %d barbar: %d baz: %d\n", foo(), bar(), foobar(), barbar(), baz());
+ return 0;
+}