From: Ulrich Drepper Date: Tue, 10 Sep 2002 01:05:50 +0000 (+0000) Subject: (__isinfl): Remove INTDEF. Add hidden_def. X-Git-Tag: glibc-2.16-ports-before-merge~1602 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3a580877e1e14a8390f1e88769362f9aca57f98;p=thirdparty%2Fglibc.git (__isinfl): Remove INTDEF. Add hidden_def. --- diff --git a/sysdeps/m68k/s_isinfl.c b/sysdeps/m68k/s_isinfl.c index 89880bc4e42..25020390870 100644 --- a/sysdeps/m68k/s_isinfl.c +++ b/sysdeps/m68k/s_isinfl.c @@ -19,10 +19,6 @@ #include #include "ieee754.h" -#undef __isinfl -#undef isinfl - - /* Return 0 if VALUE is finite or NaN, +1 if it is +Infinity, -1 if it is -Infinity. */ int @@ -42,5 +38,5 @@ __isinfl (long double value) return 0; } -INTDEF(__isinfl) +hidden_def (__isinfl) weak_alias (__isinfl, isinfl);