summaryrefslogtreecommitdiff
path: root/examples/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c
blob: 3d154b643339881549efeea415c468f48e2da5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "fooqux.h"
#include "bar.h"

#include <stdio.h>

int main (int argc, char **argv)
{
	fooqux ();
	foo ();
	bar ();
	return 0;
}