00001 /* libbaz. this library depends on foo */ 00002 00003 #include <stdio.h> 00004 00005 #include "baz.h" 00006 #include "foo.h" 00007 00008 int 00009 baz_hello(void) { 00010 foo_hello(); 00011 return 1; 00012 } 00013