diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 23:33:47 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 23:33:47 +0000 |
commit | a14c0668720dcafde3f60b7659a01d99ec693a41 (patch) | |
tree | 9c1a149bc961f7cd84b7aa93a2d61fec3d0f9685 /math/oleo/files/patch-src_io-utils.c | |
parent | 8e7fd48a294d7d6e54c6d07989807cff33ab19bd (diff) |
Notes
Diffstat (limited to 'math/oleo/files/patch-src_io-utils.c')
-rw-r--r-- | math/oleo/files/patch-src_io-utils.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/math/oleo/files/patch-src_io-utils.c b/math/oleo/files/patch-src_io-utils.c new file mode 100644 index 000000000000..05b02e8aa396 --- /dev/null +++ b/math/oleo/files/patch-src_io-utils.c @@ -0,0 +1,20 @@ +--- src/io-utils.c.org Sat Jul 19 13:42:11 2003 ++++ src/io-utils.c Sat Jul 19 13:48:32 2003 +@@ -71,7 +71,7 @@ + + double __plinf; + double __neinf; +-double __nan; ++double ___nan; + + char nname[] = "#NOT_A_NUMBER"; + char iname[] = "#INFINITY"; +@@ -125,7 +125,7 @@ + __neinf = divide (-1., 0.); + (void) signal (SIGFPE, ignore_sig); + #endif +- __nan = __plinf + __neinf; ++ ___nan = __plinf + __neinf; + } + + |