[comp.std.c] _parameters

gwyn@smoke.BRL.MIL (Doug Gwyn) (12/01/89)

In various recent articles:
>What about the library prototypes that are coded "int foo( int x, int y )"
>when they should be "int foo( int __x, int __y )"?

It may be worth reminding people that the parameter identifiers are
optional, so one could specify:
	int foo( int, int );
By the way, there IS a prohibition against the program redefining
keywords before including standard headers.