diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-13 10:18:38 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-13 10:18:38 +0000 |
commit | 3f2da04880e6a8c800a7f148249fefe9d76f4829 (patch) | |
tree | b22cd263f8547c9504472b810532ef981a32813a /libgcc | |
parent | 7151decb6e39b5c5499dba79442d73a5f04991fc (diff) | |
download | gcc-3f2da04880e6a8c800a7f148249fefe9d76f4829.tar.gz |
2012-03-13 Richard Guenther <rguenther@suse.de>
* libgcov.c: Remove stdio.h include and NULL un-define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185324 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/libgcov.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index de9eebe9671..420e30fb864 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,5 +1,9 @@ 2012-03-13 Richard Guenther <rguenther@suse.de> + * libgcov.c: Remove stdio.h include and NULL un-define. + +2012-03-13 Richard Guenther <rguenther@suse.de> + PR target/52569 * unwind-dw2-fde.c: Make avoid-include-gthr.h hacks work again. diff --git a/libgcc/libgcov.c b/libgcc/libgcov.c index fd04fb1a436..1603912de2f 100644 --- a/libgcc/libgcov.c +++ b/libgcc/libgcov.c @@ -35,8 +35,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #if defined(inhibit_libc) #define IN_LIBGCOV (-1) #else -#undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */ -#include <stdio.h> #define IN_LIBGCOV 1 #if defined(L_gcov) #define GCOV_LINKAGE /* nothing */ |