From: Ulrich Drepper Date: Tue, 10 Sep 2002 01:14:47 +0000 (+0000) Subject: (__isnanl): Add hidden_def. X-Git-Tag: glibc-2.16-ports-before-merge~1598 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd8d18b3d8eccb7985e7a1c780372ef02107ae60;p=thirdparty%2Fglibc.git (__isnanl): Add hidden_def. --- diff --git a/sysdeps/m68k/s_isnanl.c b/sysdeps/m68k/s_isnanl.c index 0a9ddf9814e..999746f29c0 100644 --- a/sysdeps/m68k/s_isnanl.c +++ b/sysdeps/m68k/s_isnanl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995, 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,10 +19,6 @@ #include #include "ieee754.h" -#undef __isnanl -#undef isnanl - - /* Return nonzero if VALUE is not a number. */ int __isnanl (long double value) @@ -38,4 +34,5 @@ __isnanl (long double value) ((u.ieee.mantissa0 & 0x7fffffff) != 0 || u.ieee.mantissa1 != 0)); } +hidden_def (__isnanl) weak_alias (__isnanl, isnanl);