Commit 2f52c7e6 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

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
parent 0c12c02a
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> 1999-12-05 Mark Mitchell <mark@codesourcery.com>
* splay-tree.h (struct splay_tree_node): Rename to ... * splay-tree.h (struct splay_tree_node): Rename to ...
......
/* Symbol concatenation utilities. /* 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 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 it under the terms of the GNU General Public License as published by
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#define CONCAT2(a,b) a/**/b #define CONCAT2(a,b) a/**/b
#define CONCAT3(a,b,c) a/**/b/**/c #define CONCAT3(a,b,c) a/**/b/**/c
#define CONCAT4(a,b,c,d) a/**/b/**/c/**/d #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d
#define STRINGX(s) "?" #define STRINGX(s) "s"
#endif #endif
#define XCONCAT2(a,b) CONCAT2(a,b) #define XCONCAT2(a,b) CONCAT2(a,b)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment