The do { } while (0) macro example was missing a space after the 'e'.

This commit is contained in:
Warner Losh 2002-02-27 23:16:34 +00:00
parent 1f5e29c956
commit ad30894246
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91436

View file

@ -181,7 +181,7 @@ for pretty-printers and editors.
#define MACRO(x, y) do { \e #define MACRO(x, y) do { \e
variable = (x) + (y); \e variable = (x) + (y); \e
(y) += 2; \e (y) += 2; \e
} while(0) } while (0)
.Ed .Ed
.Pp .Pp
Enumeration values are all uppercase. Enumeration values are all uppercase.