From daa4489f7b9b74b63456374e5b48cc60205e468d Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 30 Jun 1993 17:13:09 +0000 Subject: [PATCH] (stdtypes.h): Verify that size_t etc. follow whitespace. From-SVN: r4801 --- gcc/fixincludes | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gcc/fixincludes b/gcc/fixincludes index 5a66c9d..be23079 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -403,20 +403,20 @@ 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' \ - -e '/ptrdiff_t.*;/i\ + -e '/[ ]ptrdiff_t.*;/i\ #ifndef _GCC_PTRDIFF_T\ #define _GCC_PTRDIFF_T' \ - -e '/ptrdiff_t.*;/a\ + -e '/[ ]ptrdiff_t.*;/a\ #endif' \ - -e '/wchar_t.*;/i\ + -e '/[ ]wchar_t.*;/i\ #ifndef _GCC_WCHAR_T\ #define _GCC_WCHAR_T' \ - -e '/wchar_t.*;/a\ + -e '/[ ]wchar_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 -- 2.7.4