(sys/types.h): Don't match on ssize_t.

From-SVN: r3352
This commit is contained in:
Jim Wilson 1993-01-26 15:19:35 -08:00
parent c7af43d8b3
commit 590d6f8e98
1 changed files with 2 additions and 2 deletions

View File

@ -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