diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-11-26 19:22:56 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-11-26 19:22:56 +0000 |
commit | 8140eeea9c545ea7f9c4e0c5c4a264faf581a7eb (patch) | |
tree | ad48d4386d6bb1bb336814a320631131260d75d2 /gcc/fixincludes | |
parent | 7913af09ce1f69bc5061f5f58a3d61847f4daa01 (diff) | |
download | gcc-8140eeea9c545ea7f9c4e0c5c4a264faf581a7eb.tar.gz |
(curses.h): Allow space or tab after bool keyword, instead of tab or tab.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10596 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-x | gcc/fixincludes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 333e6a39955..ba6781df59e 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -1997,9 +1997,9 @@ for files in curses.h; do #ifndef __cplusplus'\ -e '/^#[ ]*define[ ][ ]*bool[ ][ ]*char[ ]*$/a\ #endif'\ - -e '/^typedef[ ][ ]*char[ ][ ]*bool[ ]*;/i\ + -e '/^typedef[ ][ ]*char[ ][ ]*bool[ ]*;/i\ #ifndef __cplusplus'\ - -e '/^typedef[ ][ ]*char[ ][ ]*bool[ ]*;/a\ + -e '/^typedef[ ][ ]*char[ ][ ]*bool[ ]*;/a\ #endif'\ ${LIB}/$file > ${LIB}/${file}.sed rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file |