[2659] in Athena Bugs
Bad line in /usr/lib/llib-lc, Vax 6.3B (and probably many others)
daemon@ATHENA.MIT.EDU (Theodore Ts'o)
Fri Jul 28 03:51:08 1989
Date: Fri, 28 Jul 89 03:50:56 EDT
From: Theodore Ts'o <tytso@ATHENA.MIT.EDU>
To: bugs@ATHENA.MIT.EDU
Reply-To: tytso@ATHENA.MIT.EDU
Line 98 in /usr/lib/lint/llib-lc is incorrect. It currently reads:
int mount(s, n, f) char *s, *n; { return(0); }
it should read something like this:
int mount(t, d, f, dt) char *d; caddr_t *dt; { return(0); }
Otherwise, you get some erroneous lint error messages when processing
programs which use the mount system call.
- Ted