summaryrefslogtreecommitdiffstats
path: root/Tests/SourceGroups/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SourceGroups/main.c')
-rw-r--r--Tests/SourceGroups/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/SourceGroups/main.c b/Tests/SourceGroups/main.c
index cd17e24..212e64b 100644
--- a/Tests/SourceGroups/main.c
+++ b/Tests/SourceGroups/main.c
@@ -4,9 +4,10 @@ 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\n", foo(), bar(), foobar(), barbar());
+ printf("foo: %d bar: %d foobar: %d barbar: %d baz: %d\n", foo(), bar(), foobar(), barbar(), baz());
return 0;
}