aboutsummaryrefslogtreecommitdiff
path: root/gcc/system.h
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-02-15 11:58:09 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-02-15 11:58:09 +0000
commitbd86d7e2b23aa121ff48d2501036d0c164383a19 (patch)
treee9939213b7dbe98be50feffc765b5e3e079c426f /gcc/system.h
parentc4ae272555de2b9872514f6f73e63ba6c51765eb (diff)
downloadgcc-bd86d7e2b23aa121ff48d2501036d0c164383a19.zip
gcc-bd86d7e2b23aa121ff48d2501036d0c164383a19.tar.gz
gcc-bd86d7e2b23aa121ff48d2501036d0c164383a19.tar.bz2
cccp.c: Don't define HOST_WIDE_INT.
* cccp.c: Don't define HOST_WIDE_INT. Replace all occurrences of WIDE_INT with WIDEST_INT. * cexp.y: Likewise. Don't define unsigned_HOST_WIDE_INT, CHAR_BIT or HOST_BITS_PER_WIDE_INT. Replace occurrences of PRINTF_PROTO_1() style with PVPROTO() ATTRIBUTE_PRINTF_1 style macros. Replace occurrences of "unsigned_HOST" with "unsigned HOST". Provide a definition of variable `c89' when compiling a test binary and set it. * system.h: Don't define the PRINTF_PROTO_* macros. From-SVN: r25217
Diffstat (limited to 'gcc/system.h')
-rw-r--r--gcc/system.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/system.h b/gcc/system.h
index 3999f42..6e549ca 100644
--- a/gcc/system.h
+++ b/gcc/system.h
@@ -482,15 +482,4 @@ extern void abort ();
/* Get libiberty declarations. */
#include "libiberty.h"
-#if defined (ANSI_PROTOTYPES)
-# define PRINTF_PROTO(ARGS, m, n) PVPROTO (ARGS) ATTRIBUTE_PRINTF(m, n)
-#else
-# define PRINTF_PROTO(ARGS, m, n) () ATTRIBUTE_PRINTF(m, n)
-#endif
-#define PRINTF_PROTO_1(ARGS) PRINTF_PROTO(ARGS, 1, 2)
-#define PRINTF_PROTO_2(ARGS) PRINTF_PROTO(ARGS, 2, 3)
-#define PRINTF_PROTO_3(ARGS) PRINTF_PROTO(ARGS, 3, 4)
-#define PRINTF_PROTO_4(ARGS) PRINTF_PROTO(ARGS, 4, 5)
-
-
#endif /* __GCC_SYSTEM_H__ */