diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2012-06-04 19:24:13 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2012-06-04 19:24:13 +0100 |
commit | 41a9a941ab627acb413f067a38406d7908dbd364 (patch) | |
tree | 73d671c22686b70a904a9e3214248cc2f2977bda /lib/nimbase.h | |
parent | 4105a91c4841f836949ce0c4f1d3090b8b83ac2e (diff) | |
download | Nim-41a9a941ab627acb413f067a38406d7908dbd364.tar.gz |
Fixed math.round, added math.ceil and fixed times.format.
Diffstat (limited to 'lib/nimbase.h')
-rwxr-xr-x | lib/nimbase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h index 61e7da75e..a73933a40 100755 --- a/lib/nimbase.h +++ b/lib/nimbase.h @@ -192,7 +192,7 @@ __clang__ ** long int lrint (double x); */ -#if defined(__LCC__) || (defined(__GNUC__) && defined(WIN32)) +#if defined(__LCC__) || (defined(__GNUC__)) /* Linux' GCC does not seem to have these. Why? */ # define HAVE_LRINT # define HAVE_LRINTF |