summaryrefslogtreecommitdiff
path: root/gcc/tsystem.h
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-01 03:48:04 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-01 03:48:04 +0000
commit597183a713c90c46dc9c299d1a53660733e5ffc1 (patch)
tree8aee75418bc08023370427d9bef2cb1d2fe44a1f /gcc/tsystem.h
parent78f1e69852e7cdfd8d8e1a3865f661f5ff6a61da (diff)
downloadgcc-597183a713c90c46dc9c299d1a53660733e5ffc1.tar.gz
* tsystem.h: Test only POSIX for availability of string.h
and time.h. * config.gcc (all systems): If USG appeared in xm_defines, change it to POSIX. If both USG and POSIX appeared, just delete USG. Remove unnecessary quotes around xm_defines settings. (m68k-crds-unos*): Don't #define unos - tested nowhere. (m68k-apple-aux*): Don't #define AUX - tested nowhere. (alpha*-*-linux*ecoff*, powerpc-*-linux*libc1, powerpc-*-linux*): No need to set xm_defines - handled by global settings for *-*-linux*. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41714 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tsystem.h')
-rw-r--r--gcc/tsystem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tsystem.h b/gcc/tsystem.h
index a20dbe746b6..4c21f810f1b 100644
--- a/gcc/tsystem.h
+++ b/gcc/tsystem.h
@@ -72,7 +72,7 @@ extern int atexit (void (*)(void));
extern int errno;
#endif
-#if defined(POSIX) || defined(USG)
+#ifdef POSIX
#include <string.h>
#endif
@@ -83,7 +83,7 @@ extern int errno;
/* GCC supplies this header. */
#include <limits.h>
-#if defined(POSIX) || defined(USG)
+#ifdef POSIX
#include <time.h>
#endif