Don't give a bad example by starting a struct tag name with an

underscore.  Names starting with an underscore are reserved.
This commit is contained in:
Joerg Wunsch 2001-07-03 16:22:42 +00:00
parent 29905510e0
commit 72fb076dce
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79147

View file

@ -204,7 +204,7 @@ except as specified in Standard C or by
.Tn POSIX .
.Bd -literal
/* Make the structure name match the typedef. */
typedef struct _bar {
typedef struct bar {
int level;
} BAR;
.Ed