diff options
author | Mike Buland <mike@xagasoft.com> | 2014-10-31 10:41:57 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2014-10-31 10:41:57 -0600 |
commit | 9e204039f0b310bdb101063bbfb82b9a9fb5d5e0 (patch) | |
tree | fef00f18505f649b3dfa07a2aa3dccef92bcb651 /src/config.h | |
parent | 301844ef30b44966463ab22d6a518bc302330e1e (diff) | |
download | clic-9e204039f0b310bdb101063bbfb82b9a9fb5d5e0.tar.gz clic-9e204039f0b310bdb101063bbfb82b9a9fb5d5e0.tar.bz2 clic-9e204039f0b310bdb101063bbfb82b9a9fb5d5e0.tar.xz clic-9e204039f0b310bdb101063bbfb82b9a9fb5d5e0.zip |
Corrected issue with particular sequences of zeros.
No more known division issues.
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h new file mode 100644 index 0000000..00fb067 --- /dev/null +++ b/src/config.h | |||
@@ -0,0 +1,8 @@ | |||
1 | #ifndef CONFIG_H | ||
2 | #define CONFIG_H | ||
3 | |||
4 | #define DEBUG_DIVIDE false | ||
5 | #define DBS( s, x ) if( DEBUG_ ##s ) { x; } (void)0 | ||
6 | |||
7 | |||
8 | #endif | ||