diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2000-01-01 17:26:13 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-01-01 17:26:13 +0000 |
commit | 2f52c7e641dd66affdd5fb70f089d260941b4f85 (patch) | |
tree | 7997505314e158eefd80c65c2f0df5b2f22e7fea /include/symcat.h | |
parent | 0c12c02a4fad172fadd73a9bffbd0658c92e31b6 (diff) | |
download | gcc-2f52c7e641dd66affdd5fb70f089d260941b4f85.tar.gz |
symcat.h (STRINGX): Change "?" to "s" to stringify argument s.
* symcat.h (STRINGX) [!__STDC__ || ALMOST_STDC]: Change "?" to "s"
to stringify argument s.
From-SVN: r31159
Diffstat (limited to 'include/symcat.h')
-rw-r--r-- | include/symcat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/symcat.h b/include/symcat.h index 01efada2618..3e27162b264 100644 --- a/include/symcat.h +++ b/include/symcat.h @@ -1,6 +1,6 @@ /* Symbol concatenation utilities. - Copyright (C) 1998, Free Software Foundation, Inc. + Copyright (C) 1998, 2000 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ #define CONCAT2(a,b) a/**/b #define CONCAT3(a,b,c) a/**/b/**/c #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d -#define STRINGX(s) "?" +#define STRINGX(s) "s" #endif #define XCONCAT2(a,b) CONCAT2(a,b) |