Protect most definitions with #ifndef.
authorRichard Kenner <kenner@gcc.gnu.org>
Mon, 29 May 1995 12:55:16 +0000 (08:55 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 29 May 1995 12:55:16 +0000 (08:55 -0400)
From-SVN: r9831

gcc/config/winnt/xm-winnt.h

index a9fcdbc..08d1a57 100644 (file)
@@ -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 <stdlib.h>
+
+#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)