diff options
author | Araq <rumpf_a@web.de> | 2010-11-18 22:26:20 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2010-11-18 22:26:20 +0100 |
commit | adf13aaea379d482ad4289d349a9d475bc2c06a6 (patch) | |
tree | 4c18d447545c35fa7c1f4ce7db566f96db67a080 /lib/nimbase.h | |
parent | 8ee63f98364259b2d1b6c02d050e0efccecbcf9b (diff) | |
download | Nim-adf13aaea379d482ad4289d349a9d475bc2c06a6.tar.gz |
docgen understands and ignores *when false*
Diffstat (limited to 'lib/nimbase.h')
-rwxr-xr-x | lib/nimbase.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h index 983bb112d..0251364d1 100755 --- a/lib/nimbase.h +++ b/lib/nimbase.h @@ -22,6 +22,10 @@ __TINYC__ #ifndef NIMBASE_H #define NIMBASE_H +#if defined(__GNUC__) +# define _GNU_SOURCE 1 +#endif + #if !defined(__TINYC__) # include <math.h> #else @@ -29,7 +33,6 @@ __TINYC__ # define GCC_MAJOR 4 # define __GNUC_MINOR__ 4 # define __GNUC_PATCHLEVEL__ 5 */ - # define __DECLSPEC_SUPPORTED 1 #endif |