Put the error code into the Info column symbolically, if possible.
[obnox/wireshark/wip.git] / tools / lemon / cppmagic.h
1 /* $Id: cppmagic.h,v 1.1 2001/02/27 20:34:09 gram Exp $ */
2
3 /**************************************** CPP definitions ***************/
4
5 /* CPP magic: Concatenate two strings or macros that resolve to strings.
6  * Use CONCAT(), not _CONCAT() */
7 #define _CONCAT(a,b)            a ## b
8 #define CONCAT(a,b)             _CONCAT(a,b)
9
10 /* CPP magic: Surround a string or a macro that resolves to a string with
11  * double quotes. */
12 #define _STRINGIFY(a)           # a
13 #define STRINGIFY(a)            _STRINGIFY(a)
14