Mercurial > hg > octave-kai > gnulib-hg
annotate modules/base64 @ 13837:d7a891a411c1
strtod: work around icc bug
With optimization, ICC 10.0 mis-compiles 'cond ? -val : val' such
that a val of 0.0 doesn't result in -0.0.
* lib/strtod.c (minus_zero): Define to working value.
(strtod): Use it to avoid icc bug.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Fri, 05 Nov 2010 08:30:27 -0600 |
parents | 08e90860ec5e |
children |
rev | line source |
---|---|
5498 | 1 Description: |
2 Encode binary data using printable characters (base64). | |
3 | |
4 Files: | |
5 lib/base64.h | |
6 lib/base64.c | |
7 m4/base64.m4 | |
8 | |
9 Depends-on: | |
10 stdbool | |
10746 | 11 memchr |
5498 | 12 |
13 configure.ac: | |
14 gl_FUNC_BASE64 | |
15 | |
16 Makefile.am: | |
17 lib_SOURCES += base64.h base64.c | |
18 | |
19 Include: | |
20 "base64.h" | |
21 | |
22 License: | |
9131
8812f453e378
Use the synonymous term LGPLv2+.
Bruno Haible <bruno@clisp.org>
parents:
7100
diff
changeset
|
23 LGPLv2+ |
5498 | 24 |
25 Maintainer: | |
26 Simon Josefsson |