diff options
Diffstat (limited to 'sysdeps/libm-ieee754/s_nanf.c')
-rw-r--r-- | sysdeps/libm-ieee754/s_nanf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/libm-ieee754/s_nanf.c b/sysdeps/libm-ieee754/s_nanf.c index e965b94b33..660f30daf3 100644 --- a/sysdeps/libm-ieee754/s_nanf.c +++ b/sysdeps/libm-ieee754/s_nanf.c @@ -31,7 +31,7 @@ float -nanf (const char *tagp) +__nanf (const char *tagp) { #ifdef HANDLE_TAGP /* If we ever should have use of the TAGP parameter we will use the @@ -45,3 +45,4 @@ nanf (const char *tagp) return nan_value.f; #endif } +weak_alias (__nanf, nanf) |