Code code code

Matt Dillon noted that if/when replacing K&R declarations with ANSI-compatible ones, watch for argument order:

(old style)
int
fubar(a, b, c)
int c;
int b;
int a;
{
}

(new style)
int
fubar(int a, int b, int c)

He also added: indent when the argument list wraps, and don’t try it in /usr/src/sys/ for the next few weeks, as he’s working there!

Also: ibotty submitted a patch that would let users mount devices to which they do not have write access, though this may be delayed until/overridden by VFS work.