chiark / gitweb /
yaid.h: Avoid the macro name `N'.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 23 Jun 2013 17:01:19 +0000 (18:01 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 23 Jun 2013 17:01:19 +0000 (18:01 +0100)
Rename the helper macros of `RESPONSE' to `U_' and `N_'.

yaid.h

diff --git a/yaid.h b/yaid.h
index 18c17ec68fa2493da5bc3ba37caa05a3b13169e7..ef3e7263f528746b14ca62f3f41fa1b8ede50a4b 100644 (file)
--- a/yaid.h
+++ b/yaid.h
@@ -195,12 +195,12 @@ extern void dputsock(dstr */*d*/, const struct addrops */*ao*/,
 enum { L, R, NDIR };
 
 /* Response types, and the data needed to represent any associated data.  A
- * U(MEMB, TYPE) constructs a union member; an N means no associated data.
+ * U_(MEMB, TYPE) constructs a union member; an N_ means no associated data.
  */
 #define RESPONSE(_)                                                    \
-  _(ERROR, U(error, unsigned))                                         \
-  _(UID, U(uid, uid_t))                                                        \
-  _(NAT, U(nat, struct socket))
+  _(ERROR, U_(error, unsigned))                                                \
+  _(UID, U_(uid, uid_t))                                               \
+  _(NAT, U_(nat, struct socket))
 
 enum {
 #define DEFENUM(what, branch) R_##what,
@@ -234,11 +234,11 @@ struct query {
   unsigned resp;                       /* Our response type */
   union {                              /* A union of response data */
 #define DEFBRANCH(WHAT, branch) branch
-#define U(memb, ty) ty memb;
-#define N
+#define U_(memb, ty) ty memb;
+#define N_
     RESPONSE(DEFBRANCH)
-#undef U
-#undef N
+#undef U_
+#undef N_
 #undef DEFBRANCH
   } u;
 } query;