diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-26 15:19:35 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-26 15:19:35 -0800 |
commit | 590d6f8e984fb41ce493f959c5344534f61aa4e8 (patch) | |
tree | 2c32a65148b8c2d70e9867b665737ac088d574a2 | |
parent | c7af43d8b32d6526b3e07a4d087944f8ea56220b (diff) | |
download | gcc-590d6f8e984fb41ce493f959c5344534f61aa4e8.zip gcc-590d6f8e984fb41ce493f959c5344534f61aa4e8.tar.gz gcc-590d6f8e984fb41ce493f959c5344534f61aa4e8.tar.bz2 |
(sys/types.h): Don't match on ssize_t.
From-SVN: r3352
-rwxr-xr-x | gcc/fixincludes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 7cea719..70a8d54 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -370,10 +370,10 @@ fi if [ -r ${LIB}/$file ]; then echo Fixing $file -sed -e '/size_t.*;/i\ +sed -e '/[ ]size_t.*;/i\ #ifndef _GCC_SIZE_T\ #define _GCC_SIZE_T' \ - -e '/size_t.*;/a\ + -e '/[ ]size_t.*;/a\ #endif' ${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 |