~siretart/gnucash/ubuntu-fullsource

« back to all changes in this revision

Viewing changes to src/gnc-module/test/mod-baz/baz.c

  • Committer: Reinhard Tartler
  • Date: 2008-08-03 07:25:46 UTC
  • Revision ID: siretart@tauware.de-20080803072546-y6p8xda8zpfi62ys
import gnucash_2.2.4.orig.tar.gz

The original tarball had the md5sum: 27e660297dc5b8ce574515779d05a5a5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
  foo_hello();  
 
11
  return 1;
 
12
}
 
13