summaryrefslogtreecommitdiffstats
path: root/Tests/BuildDepends/Project/bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/BuildDepends/Project/bar.c')
-rw-r--r--Tests/BuildDepends/Project/bar.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/BuildDepends/Project/bar.c b/Tests/BuildDepends/Project/bar.c
new file mode 100644
index 0000000..d32ea2e
--- /dev/null
+++ b/Tests/BuildDepends/Project/bar.c
@@ -0,0 +1,8 @@
+#include "stdio.h"
+
+const char* foo();
+int main()
+{
+ printf("%s", foo());
+ return 0;
+}