diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-11-21 19:29:37 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-11-21 19:29:37 +0000 |
commit | 7aa9e8a4091404943d845d97f98833ba4329e9ab (patch) | |
tree | 8551e490ed434c050f979c4fe3421219a3b99c09 /gcc/fixincludes | |
parent | 50ae227ce49646929f201c2a5b5eb199a675a568 (diff) | |
download | gcc-7aa9e8a4091404943d845d97f98833ba4329e9ab.tar.gz |
Include <stdio.h> unconditionally in <assert.h> if stderr is needed
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13212 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-x | gcc/fixincludes | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 40717548dd3..2df5a45b45f 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -2348,9 +2348,7 @@ if [ -r ${LIB}/$file ]; then true else echo "Fixing $file (needs stdio.h)" - echo '#ifdef __cplusplus -#include <stdio.h> -#endif' >>${LIB}/$file + echo '#include <stdio.h>' >>${LIB}/$file fi fi if grep 'exit *(' ${LIB}/$file >/dev/null 2>/dev/null || |