summaryrefslogtreecommitdiff
path: root/gcc/fixincludes
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1993-01-26 23:19:35 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1993-01-26 23:19:35 +0000
commita93ac59948ecf8cbb749a96fe9e8512afafd57d1 (patch)
tree2c32a65148b8c2d70e9867b665737ac088d574a2 /gcc/fixincludes
parent6dd5047454d46e843d6d1183cc5435ee6007e709 (diff)
downloadgcc-a93ac59948ecf8cbb749a96fe9e8512afafd57d1.tar.gz
(sys/types.h): Don't match on ssize_t.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3352 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-xgcc/fixincludes4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes
index 7cea719b369..70a8d5435e3 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