diff options
author | Christopher Faylor <me@cgf.cx> | 2013-05-13 19:25:35 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2013-05-13 19:25:35 +0000 |
commit | 6d15197bce37ef451d92fb93f8eec472cb48af84 (patch) | |
tree | ad1f0a139a591dac00528368bd2318e1ec4ccf65 | |
parent | c0d8520eebe9d4b08aea198582ec08905be1c1a7 (diff) | |
download | cygnal-6d15197bce37ef451d92fb93f8eec472cb48af84.tar.gz cygnal-6d15197bce37ef451d92fb93f8eec472cb48af84.tar.bz2 cygnal-6d15197bce37ef451d92fb93f8eec472cb48af84.zip |
* i686.din: Remove _strtold.
* x86_64.din: Move strtold definition...
* common.din: ...to here.
-rw-r--r-- | winsup/cygwin/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/cygwin/common.din | 1 | ||||
-rw-r--r-- | winsup/cygwin/i686.din | 1 | ||||
-rw-r--r-- | winsup/cygwin/x86_64.din | 1 |
4 files changed, 7 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index c31b1838f..1aa847e97 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,9 @@ +2013-05-13 Christopher Faylor <me.cygwin2013@cgf.cx> + + * i686.din: Remove _strtold. + * x86_64.din: Move strtold definition... + * common.din: ...to here. + 2013-05-07 Christopher Faylor <me.cygwin2013@cgf.cx> * fhandler_tty.cc (fhandler_pty_common::__acquire_output_mutex): Never diff --git a/winsup/cygwin/common.din b/winsup/cygwin/common.din index 3e06e450b..20948941e 100644 --- a/winsup/cygwin/common.din +++ b/winsup/cygwin/common.din @@ -1112,6 +1112,7 @@ strtoimax = strtoll NOSIGFE strtok NOSIGFE strtok_r NOSIGFE strtol NOSIGFE +strtold = _strtold SIGFE strtoll NOSIGFE strtosigno NOSIGFE strtoul NOSIGFE diff --git a/winsup/cygwin/i686.din b/winsup/cygwin/i686.din index 6b966c799..2ef0135fd 100644 --- a/winsup/cygwin/i686.din +++ b/winsup/cygwin/i686.din @@ -530,7 +530,6 @@ _strtodf = strtof SIGFE _strtok = strtok NOSIGFE _strtok_r = strtok_r NOSIGFE _strtol = strtol NOSIGFE -_strtold SIGFE _strtoll = strtoll NOSIGFE _strtoul = strtoul NOSIGFE _strtoull = strtoull NOSIGFE diff --git a/winsup/cygwin/x86_64.din b/winsup/cygwin/x86_64.din index 48226035c..24f2584c6 100644 --- a/winsup/cygwin/x86_64.din +++ b/winsup/cygwin/x86_64.din @@ -18,4 +18,3 @@ lrint NOSIGFE lrintf NOSIGFE rint NOSIGFE rintf NOSIGFE -strtold = _strtold SIGFE |