GnuCash  2.6.99
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
baz.c
1 /* libbaz. this library depends on foo */
2 
3 #include <stdio.h>
4 
5 #include "baz.h"
6 #include "foo.h"
7 
8 int
9 baz_hello(void)
10 {
11  foo_hello();
12  return 1;
13 }
14