]> mj.ucw.cz Git - libucw.git/commitdiff
Added STRINGIFY_EXPANDED.
authorMartin Mares <mj@ucw.cz>
Mon, 29 Aug 2005 16:20:49 +0000 (16:20 +0000)
committerMartin Mares <mj@ucw.cz>
Mon, 29 Aug 2005 16:20:49 +0000 (16:20 +0000)
lib/lib.h

index 9ecc55ac8e1481bd922c5bb05616d4823e8bf876..888700b90f52de568d8f1ea719069ad57e8f2a91 100644 (file)
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -34,6 +34,7 @@
 #define ABS(x) ((x) < 0 ? -(x) : (x))
 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(*(a)))
 #define STRINGIFY(x) #x
+#define STRINGIFY_EXPANDED(x) STRINGIFY(x)
 #define GLUE(x,y) x##y
 #define GLUE_(x,y) x##_##y