>>> "Paul" == Paul Eggert <[EMAIL PROTECTED]> writes:
>> subpipe.c:103: warning: variable `from_in_fd' might be clobbered by
>> `longjmp' or `vfork'
> I take it that it's OK to put information into an array rather than a
> variable that might be put into a register?
Wouldn't
(void) &from_in_fd;
do the trick? Taking the address of a variable should ensure it is
not in a register.
