]> gcc.gnu.org Git - gcc.git/commitdiff
symcat.h (STRINGX): Change "?" to "s" to stringify argument s.
authorHans-Peter Nilsson <hp@bitrange.com>
Sat, 1 Jan 2000 17:26:13 +0000 (17:26 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Sat, 1 Jan 2000 17:26:13 +0000 (17:26 +0000)
* symcat.h (STRINGX) [!__STDC__ || ALMOST_STDC]: Change "?" to "s"
to stringify argument s.

From-SVN: r31159

include/ChangeLog
include/symcat.h

index 5fa66e0cae9f5f316b49cc4700bfecd63dd3ec9b..04f9f02a39372e72a2af00202bcdb7d211138359 100644 (file)
@@ -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 ...
index 01efada2618929c6405265137023a4d63e35b474..3e27162b26490ea46e72ad225fa667ee394af7c3 100644 (file)
@@ -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)
This page took 0.067494 seconds and 5 git commands to generate.