From 72fb076dce893543909de17f6859511c70786483 Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Tue, 3 Jul 2001 16:22:42 +0000 Subject: [PATCH] Don't give a bad example by starting a struct tag name with an underscore. Names starting with an underscore are reserved. --- share/man/man9/style.9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/man/man9/style.9 b/share/man/man9/style.9 index d6696ce46b4a..27eefe42aee1 100644 --- a/share/man/man9/style.9 +++ b/share/man/man9/style.9 @@ -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