summaryrefslogtreecommitdiff
path: root/examples/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c')
-rw-r--r--examples/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c b/examples/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c
new file mode 100644
index 0000000..3d154b6
--- /dev/null
+++ b/examples/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c
@@ -0,0 +1,12 @@
+#include "fooqux.h"
+#include "bar.h"
+
+#include <stdio.h>
+
+int main (int argc, char **argv)
+{
+ fooqux ();
+ foo ();
+ bar ();
+ return 0;
+}