| * This file has no copyright assigned and is placed in the Public Domain. |
| * This file is part of the mingw-w64 runtime package. |
| * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| const union _ieee_rep __QNAN = { __DOUBLE_QNAN_REP }; |
| const union _ieee_rep __SNAN = { __DOUBLE_SNAN_REP }; |
| const union _ieee_rep __INF = { __DOUBLE_INF_REP }; |
| const union _ieee_rep __DENORM = { __DOUBLE_DENORM_REP }; |
| double nan (const char *); |
| double nan (const char * tagp __attribute__((unused)) ) |
| return __QNAN.double_val; |