diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-15 01:21:29 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-15 01:21:29 +0000 |
commit | 9ed5ef257a265ed0d20e34d191b90b1495cdb094 (patch) | |
tree | c94843263321e0e608b358205dba786c46ceb0dd /gcc/crtstuff.c | |
parent | c13d68a458e86b7872d8d0f2c885ebfd0ac51855 (diff) | |
download | gcc-9ed5ef257a265ed0d20e34d191b90b1495cdb094.tar.gz |
* crtstuff.c: Undefine gid_t, pid_t, rlim_t, ssize_t, uid_t and
vfork after including auto-host.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106924 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/crtstuff.c')
-rw-r--r-- | gcc/crtstuff.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index d969ee9160e..cde75573132 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -58,6 +58,12 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA identified the set of defines that need to go into auto-target.h, this will have to do. */ #include "auto-host.h" +#undef gid_t +#undef pid_t +#undef rlim_t +#undef ssize_t +#undef uid_t +#undef vfork #include "tconfig.h" #include "tsystem.h" #include "coretypes.h" |