Hi,
In message "[ruby-talk:18642] discrepancies between prototypes and definitions?"
on 01/07/28, Ned Konz <ned / bike-nomad.com> writes:
| int rb_thread_select();
|
|right now; why isn't it:
|
| int rb_thread_select _((int, fd_set*, fd_set*, fd_set*, struct timeval*));
|
|instead?
Because I don't want to include <sys/types.h> everywhere for fd_set.
I know, I know, I need major source restruction. I will do it when I
start developing of "Rite", at least after finishing two books I'm
working on.
matz.