Convert ipfilter kernel function declarations from K&R to ANSI. This syncs our function declarations with NetBSD hg commit 75edcd7552a0 (apply our changes). Though not copied from NetBSD, this change was partially inspired by NetBSD's work and inspired by style(9).
Details
Details
- Reviewers
glebius - Group Reviewers
network - Commits
- rG4e8d52e7d72e: ipflter: ANSIfy kernel function declarations
rG94dcd62056e9: ipflter: ANSIfy kernel function declarations
rG064a5a95649d: ipflter: ANSIfy kernel function declarations
rG39353bb1609f: ipflter: ANSIfy userland function declarations
rG9ff592d86890: ipflter: ANSIfy userland function declarations
rGefeb8bffe344: ipflter: ANSIfy userland function declarations
Currently running here.
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
Comment Actions
The uppercase INLINE, which I guess is a macro, can be substituted to lowercase inline, which is part of modern C in the same sweep.
P.S. IMHO such mechanical sweeps don't deserve a publication of review and don't require reviewers.
Comment Actions
Thanks. INLINE --> inline should be a separate pair of commits.
Also planned is conform "return" statements to style(9).