summaryrefslogtreecommitdiff
path: root/examples/hello_libdeps/libs/libbar/bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello_libdeps/libs/libbar/bar.c')
-rw-r--r--examples/hello_libdeps/libs/libbar/bar.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/hello_libdeps/libs/libbar/bar.c b/examples/hello_libdeps/libs/libbar/bar.c
new file mode 100644
index 0000000..b8015fc
--- /dev/null
+++ b/examples/hello_libdeps/libs/libbar/bar.c
@@ -0,0 +1,8 @@
+#include "bar.h"
+
+#include <stdio.h>
+
+void bar (void)
+{
+ puts ("I am bar");
+}