From 960bac839a733e4b19b5bd2d53d951f615f0097d Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 29 May 1995 08:55:16 -0400 Subject: [PATCH] Protect most definitions with #ifndef. From-SVN: r9831 --- gcc/config/winnt/xm-winnt.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gcc/config/winnt/xm-winnt.h b/gcc/config/winnt/xm-winnt.h index a9fcdbc35df..08d1a57d11a 100644 --- a/gcc/config/winnt/xm-winnt.h +++ b/gcc/config/winnt/xm-winnt.h @@ -19,11 +19,27 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include + +#ifndef USG #define USG 1 +#endif + +#ifndef ONLY_INT_FIELD #define ONLY_INT_FIELDS 1 +#endif + +#ifndef USE_PROTOTYPES #define USE_PROTOTYPES 1 +#endif + +#ifndef HAVE_PUTENV #define HAVE_PUTENV 1 +#endif + +#ifndef HAVE_VPRINTF #define HAVE_VPRINTF 1 +#endif + #define NO_SYS_SIGLIST 1 #define bcmp(a,b,c) memcmp (a,b,c) #define bcopy(a,b,c) memcpy (b,a,c) -- 2.30.2