diff options
author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-13 22:23:16 +0000 |
---|---|---|
committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-13 22:23:16 +0000 |
commit | e3108d46cb035331be28f3ce347373b464cad6dc (patch) | |
tree | 20304ca2798334cd6bfacb6aa5cb56c8b02878da /libgcc | |
parent | 9289ffe290ed7b50dd4e5d44cfcb079caef9084c (diff) | |
download | gcc-e3108d46cb035331be28f3ce347373b464cad6dc.tar.gz |
2014-08-13 Steve Ellcey <sellcey@mips.com>
* crtstuff.c: Undef caddr_t.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@213931 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/crtstuff.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 441ec93b329..cb4b2853269 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2014-08-13 Steve Ellcey <sellcey@mips.com> + + * crtstuff.c: Undef caddr_t. + 2014-08-12 Steve Ellcey <sellcey@mips.com> * config/mips/mips16.S: Skip when __mips_soft_float is defined. diff --git a/libgcc/crtstuff.c b/libgcc/crtstuff.c index 2c56af32d60..9d5399acb5e 100644 --- a/libgcc/crtstuff.c +++ b/libgcc/crtstuff.c @@ -52,6 +52,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see identified the set of defines that need to go into auto-target.h, this will have to do. */ #include "auto-host.h" +#undef caddr_t #undef pid_t #undef rlim_t #undef ssize_t |