]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* fixincludes: Fix "hypot" prototype in NeXT math.h.
authorJeffrey A Law <law@cygnus.com>
Wed, 5 Nov 1997 03:08:06 +0000 (03:08 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 5 Nov 1997 03:08:06 +0000 (20:08 -0700)
From-SVN: r16337

gcc/ChangeLog
gcc/fixincludes

index 240c7c1c6480df99d721a0b3b9b9a8845aeb67f8..f9aa9ee5a958577e659494d16203766850338317 100644 (file)
@@ -1,5 +1,7 @@
 Tue Nov  4 16:07:15 1997  Jeffrey A Law  (law@cygnus.com)
 
+       * fixincludes: Fix "hypot" prototype in NeXT math.h.
+
        * Makefile.in (USE_ALLOCA): Always include alloca.o.
        (USE_HOST_ALLOCA): Likewise.
 
index 33ef8add15ba63bea4590769f3fa4370e8192686..2a41c8d568fbd1fd72af1ed6dc88971d1374300f 100755 (executable)
@@ -1499,6 +1499,7 @@ if [ -r ${LIB}/$file ]; then
   sed -e '/^extern.*double.*__const__.*sqrt(/s/__const__//' \
       -e '/^extern.*double.*__const__.*fabs(/s/__const__//' \
       -e '/^extern.*double.*__const__.*cos(/s/__const__//' \
+      -e '/^extern.*double.*__const__.*hypot(/s/__const__//' \
       -e '/^extern.*double.*__const__.*sin(/s/__const__//' ${LIB}/$file > ${LIB}/${file}.sed
   rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file
   if cmp $file ${LIB}/$file >/dev/null 2>&1; then