From 597183a713c90c46dc9c299d1a53660733e5ffc1 Mon Sep 17 00:00:00 2001 From: zack Date: Tue, 1 May 2001 03:48:04 +0000 Subject: * 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 --- gcc/tsystem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/tsystem.h') 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 #endif @@ -83,7 +83,7 @@ extern int errno; /* GCC supplies this header. */ #include -#if defined(POSIX) || defined(USG) +#ifdef POSIX #include #endif -- cgit v1.2.1