[3394] in Athena Bugs
RT C lint line for insque wrong
daemon@ATHENA.MIT.EDU (epeisach@ATHENA.MIT.EDU)
Wed Oct 11 09:00:16 1989
From: epeisach@ATHENA.MIT.EDU
Date: Wed, 11 Oct 89 08:59:44 -0400
To: bugs@ATHENA.MIT.EDU
The line reads:
insque(elem, pred) struct qelem *elem, pred; { ; }
When it really should be:
insque(elem, pred) struct qelem *elem, *pred; { ; }
Check the man page.
Check the source (/source/rt/lib/libc/ca/gen/insque.c and you get:
insque(elem,pred)
struct qelem *elem,*pred;
I discovered this by doing a diff of the two libraries.
(This will be fixed in the sources in about ten minutes.)
Ezra