* fixincludes: Fix "hypot" prototype in NeXT math.h.
authorJeffrey A Law <law@cygnus.com>
Wed, 5 Nov 1997 03:09:18 +0000 (03:09 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 5 Nov 1997 03:09:18 +0000 (20:09 -0700)
From-SVN: r16338

gcc/ChangeLog
gcc/fixincludes

index fb20f579cb88985294b19f41a76c46ace7533d9d..3e73e87a54349d4eca0674a6f40ab9baed48f319 100644 (file)
@@ -1,5 +1,7 @@
 Tue Nov  4 18:49:42 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 dfe50d592e24b1b026a160650ba97f08f4806921..af03dfb83a9dbbf3dc0b151d22e35c813af5e246 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