summaryrefslogtreecommitdiff
path: root/doc/example/src/main.c
blob: caeae4a09c0c8c801d97a0b869be69406f2dc1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "money.h"

/* only main should be in this file, to make all other functions in
   the prograble testable by Check.  in order to test main(), use a
   whole program testing framework like Autotest.
*/

int
main (void)
{
  return 0;
}