Xin LI <[EMAIL PROTECTED]> writes: > Log: > Improves and cleanups over inetd(8): > > - Teach inetd(8) about kqueue, originally implemented by [EMAIL PROTECTED] > - Use new C99 style function prototypes instead of K&Rs. > - Raise WARNS from 2 to 6
There is no "new C99 style" for function prototypes. The correct description for what you did, in standardese, is "replace declaration lists in function definitions with parameter type lists" (C99 §6.9.1). Parameter type lists were introduced in the original ANSI C standard in 1989, which is why we usually describe what you did as "ANSIfy". See also src/tools/tools/ansify. DES (needs to spend less time on comp.lang.c) -- Dag-Erling Smørgrav - [EMAIL PROTECTED] _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
