diff options
author | Adam Jackson <ajax@redhat.com> | 2009-06-12 12:41:57 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-06-12 12:41:57 -0400 |
commit | 4435ea3d806f5b9cd66b563a6b751ac5020404e3 (patch) | |
tree | 6e6d6a95f4ee4415407f908e424e3b00bc66aab6 /Xmd.h | |
parent | 74d18e89a3a315ae9ee4fb3efcaf515abd339b1d (diff) |
Use ## catenation not /**/
Diffstat (limited to 'Xmd.h')
-rw-r--r-- | Xmd.h | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -88,15 +88,11 @@ SOFTWARE. * symbols are no more than 32 characters long (which causes problems for some * compilers and preprocessors). * - * The extra indirection in the __STDC__ case is to get macro arguments to - * expand correctly before the concatenation, rather than afterward. + * The extra indirection is to get macro arguments to expand correctly before + * the concatenation, rather than afterward. */ -#if !defined(UNIXCPP) || defined(ANSICPP) #define _SIZEOF(x) sz_##x #define SIZEOF(x) _SIZEOF(x) -#else -#define SIZEOF(x) sz_/**/x -#endif /* if ANSI C compiler else not */ /* * Bitfield suffixes for the protocol structure elements, if you |