diff options
author | Jeffrey A Law <law@cygnus.com> | 1997-11-05 03:09:18 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-11-04 20:09:18 -0700 |
commit | 3ed18aebe9c37b36249b9b3d8d168ca072ffcedf (patch) | |
tree | 7fcb6e5479e6e26d556b807a6994033d377c2c6f | |
parent | 3fe40e055aec61feeac61693d236edcb47e74a15 (diff) | |
download | gcc-3ed18aebe9c37b36249b9b3d8d168ca072ffcedf.zip gcc-3ed18aebe9c37b36249b9b3d8d168ca072ffcedf.tar.gz gcc-3ed18aebe9c37b36249b9b3d8d168ca072ffcedf.tar.bz2 |
* fixincludes: Fix "hypot" prototype in NeXT math.h.
From-SVN: r16338
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rwxr-xr-x | gcc/fixincludes | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fb20f57..3e73e87 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/fixincludes b/gcc/fixincludes index dfe50d5..af03dfb 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -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 |