diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-01 17:26:13 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-01 17:26:13 +0000 |
commit | 568913d8e0ba435e63626a6009c79daccee35bbd (patch) | |
tree | 7997505314e158eefd80c65c2f0df5b2f22e7fea /include | |
parent | e199faea9f4ec7a4abbc6654b924713491534def (diff) | |
download | gcc-568913d8e0ba435e63626a6009c79daccee35bbd.tar.gz |
* symcat.h (STRINGX) [!__STDC__ || ALMOST_STDC]: Change "?" to "s"
to stringify argument s.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31159 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/symcat.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 5fa66e0cae9..04f9f02a393 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 1 19:06:52 2000 Hans-Peter Nilsson <hp@bitrange.com> + + * symcat.h (STRINGX) [!__STDC__ || ALMOST_STDC]: Change "?" to "s" + to stringify argument s. + 1999-12-05 Mark Mitchell <mark@codesourcery.com> * splay-tree.h (struct splay_tree_node): Rename to ... 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) |