aboutsummaryrefslogtreecommitdiff
path: root/gcc/system.h
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2001-03-27 15:31:46 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2001-03-27 15:31:46 +0000
commit4bc5fbd480352653d10d4056d77750750fd5e0f3 (patch)
tree2e592a2ad0d4637b55b1458012395d2ab9c692b6 /gcc/system.h
parent313e46b92977bedbd2c2ed30e38ceabda495178d (diff)
downloadgcc-4bc5fbd480352653d10d4056d77750750fd5e0f3.zip
gcc-4bc5fbd480352653d10d4056d77750750fd5e0f3.tar.gz
gcc-4bc5fbd480352653d10d4056d77750750fd5e0f3.tar.bz2
system.h: Include symcat.h.
* system.h: Include symcat.h. (STRINGIFY): Don't define. * configure.in: Adjust comment. * builtins.c: Use STRINGX, not STRINGIFY. * gencheck.c: Likewise. * gengenrtl.c: Likewise. * protoize.c: Likewise. * cpplex.c: Don't include symcat.h. * cpplib.c: Likewise. * gansidecl.h (HAVE_STRINGIZE): Don't define. From-SVN: r40875
Diffstat (limited to 'gcc/system.h')
-rw-r--r--gcc/system.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/gcc/system.h b/gcc/system.h
index da9046a..516ad5c 100644
--- a/gcc/system.h
+++ b/gcc/system.h
@@ -355,21 +355,6 @@ extern void abort PARAMS ((void));
#endif
-
-/* Define a STRINGIFY macro that's right for ANSI or traditional C.
- Note: if the argument passed to STRINGIFY is itself a macro, eg
- #define foo bar, STRINGIFY(foo) will produce "foo", not "bar".
- Although the __STDC__ case could be made to expand this via a layer
- of indirection, the traditional C case can not do so. Therefore
- this behavior is not supported. */
-#ifndef STRINGIFY
-# ifdef HAVE_STRINGIZE
-# define STRINGIFY(STRING) #STRING
-# else
-# define STRINGIFY(STRING) "STRING"
-# endif
-#endif /* ! STRINGIFY */
-
#if HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
@@ -481,6 +466,7 @@ extern void abort PARAMS ((void));
/* Get libiberty declarations. */
#include "libiberty.h"
+#include "symcat.h"
/* Provide a default for the HOST_BIT_BUCKET.
This suffices for POSIX-like hosts. */