diff options
author | Mike Buland <eichlan@xagasoft.com> | 2015-01-29 08:56:43 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2015-01-29 08:56:43 -0700 |
commit | 14419813582bc89334d2e9d5bdd74b5852bfc9f9 (patch) | |
tree | 9b6dff56e27d485652dfd019391aef4845ff01c1 /src/config.h | |
parent | 42e77eb7ba24d2b7ebd47fadbc9240dc4520a5d6 (diff) | |
parent | f03026f5c2cde1eecfda273eaa52df10287f0f9e (diff) | |
download | clic-14419813582bc89334d2e9d5bdd74b5852bfc9f9.tar.gz clic-14419813582bc89334d2e9d5bdd74b5852bfc9f9.tar.bz2 clic-14419813582bc89334d2e9d5bdd74b5852bfc9f9.tar.xz clic-14419813582bc89334d2e9d5bdd74b5852bfc9f9.zip |
Merge branch 'master' of /home/eichlan/git/clic
Diffstat (limited to '')
-rw-r--r-- | src/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index a3f8b9e..482ef9e 100644 --- a/src/config.h +++ b/src/config.h | |||
@@ -1,11 +1,12 @@ | |||
1 | #ifndef CONFIG_H | 1 | #ifndef CONFIG_H |
2 | #define CONFIG_H | 2 | #define CONFIG_H |
3 | 3 | ||
4 | #define CLIC_VERSION "0.11" | 4 | #define CLIC_VERSION "0.13" |
5 | #define CLIC_VERSION_STR "Clic v" CLIC_VERSION | 5 | #define CLIC_VERSION_STR "Clic v" CLIC_VERSION |
6 | 6 | ||
7 | #define DEBUG_DIVIDE false | 7 | #define DEBUG_DIVIDE false |
8 | #define DEBUG_PARSE false | 8 | #define DEBUG_PARSE false |
9 | #define DEBUG_ADD false | ||
9 | 10 | ||
10 | #define DBS( s, x ) if( DEBUG_ ##s ) { x; } (void)0 | 11 | #define DBS( s, x ) if( DEBUG_ ##s ) { x; } (void)0 |
11 | #define DBS_START( s ) if( DEBUG_ ##s ) { (void)0 | 12 | #define DBS_START( s ) if( DEBUG_ ##s ) { (void)0 |