diff options
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-x | gcc/fixincludes | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 80032e624d6..42d81b9161c 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -366,6 +366,13 @@ for file in sys/types.h stdlib.h sys/stdtypes.h stddef.h memory.h unistd.h; do if [ -r ${LIB}/$file ]; then echo Fixing size_t, ptrdiff_t and wchar_t in $file sed \ + -e '/^[ ]*\*[ ]*typedef unsigned int size_t;/N' \ + -e 's/^\([ ]*\*[ ]*typedef unsigned int size_t;\n[ ]*\*\/\)/\1\ +#ifndef __SIZE_TYPE__\ +#define __SIZE_TYPE__ long unsigned int\ +#endif\ +typedef __SIZE_TYPE__ size_t;\ +/' \ -e '/typedef[ ][ ]*[a-z_][ a-z_]*[ ]size_t/i\ #ifndef __SIZE_TYPE__\ #define __SIZE_TYPE__ long unsigned int\ @@ -2300,6 +2307,8 @@ done # libm.a on m88k-motorola-sysv3 contains a stupid optimization for function # hypot(), which returns the second argument without even looking at its value # if the other is 0.0 +# Another drawback is that fix-header doesn't fix fabs' prototype, and I have +# no idea why. file=math.h if [ $target_canonical = m88k-motorola-sysv3 ]; then if [ -r $file ] && [ ! -r ${LIB}/$file ]; then @@ -2309,8 +2318,10 @@ if [ $target_canonical = m88k-motorola-sysv3 ]; then fi if [ -r ${LIB}/$file ]; then - echo Fixing $file, hypot definition - sed -e '/^extern double hypot();$/a\ + echo Fixing $file, fabs/hypot definition + sed \ + -e 's/extern double floor(), ceil(), fmod(), fabs();/extern double floor(), ceil(), fmod(), fabs _PARAMS((double));/' \ + -e '/^extern double hypot();$/a\ \/* Workaround a stupid Motorola optimization if one\ of x or y is 0.0 and the other is negative! *\/\ #ifdef __STDC__\ |