Clarify parameter "names" in prototypes.

Submitted by:	bde
This commit is contained in:
David E. O'Brien 2001-10-03 07:33:59 +00:00
parent c84f2b288e
commit f7bb899909

View File

@ -237,8 +237,10 @@ void function(int fd);
.Ed
.Pp
In header files visible to userland applications, prototypes that are
visible must use either protected names or no names with the types. It
is preferable to use protected names.
visible must use either
.Dq Li protected
names (ones beginning with an underscore) or no names with the types.
It is preferable to use protected names.
E.g., use:
.Bd -literal
void function(int);