(sys/types.h): Don't match on ssize_t.
authorJim Wilson <wilson@gcc.gnu.org>
Tue, 26 Jan 1993 23:19:35 +0000 (15:19 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 26 Jan 1993 23:19:35 +0000 (15:19 -0800)
From-SVN: r3352

gcc/fixincludes

index 7cea719b369bf10a60efd39a1463a9153dbc93a4..70a8d5435e38b1d2991bffb601f024b23e65cbe0 100755 (executable)
@@ -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