aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/programs/config.h
blob: 2b1cb3ca354bec1785bcae14da76cee0c6108e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <gfsmConfig.h>

/* Define this for verbose memory debugging */
//#define GFSM_DEBUG_VERBOSE

#ifdef GFSM_DEBUG_VERBOSE
# include <gfsmDebug.h>
# define GFSM_INIT   gfsm_debug_init();
# define GFSM_FINISH gfsm_debug_finish(); gfsm_debug_print();
#else
# define GFSM_INIT
# define GFSM_FINISH
#endif