:In article <local.mail.freebsd-current/[EMAIL PROTECTED]> you write:
:>Now I got lost of
:>
:>/usr/include/sys/event.h:159: warning: `struct timespec' declared inside
:>parameter list.
:>
:>because <sys/select.h> include it.
:>Please fix somehow.
:
:I'm looking at this now.
:--
:Jonathan
this just means you have:
int fubar(struct blah *ptr) ...
Where 'struct blah' has not been previously struct. This is one of those
broken ANSIsms. The solution is simple:
struct blah;
int fubar(struct blah *ptr) ...
-Matt
Matthew Dillon
<[EMAIL PROTECTED]>
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message