mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -05:00
o Old-style K&R declarations have been converted to new C89 style
o register has been removed
o prototype for main() has been removed (gcc3 makes it an error)
o int main(int argc, char *argv[]) is the preferred main definition.
o Attempt to not break style(9) conformance for declarations more than
they already are.
o Change
int
foo() {
...
to
int
foo(void)
{
...
|
||
|---|---|---|
| .. | ||
| Makefile | ||
| sync.8 | ||
| sync.c | ||