Re: warnings about signal() calls on HP

Jeremy Hylton <[email protected]> Wed, 17 Jul 2002 16:25:33 -0400
Newsgroups gmane.comp.python.snake-farm.user
Message-ID <[email protected]>
We see these warnings on Solaris, too, where SIG_IGN is defined as

#define SIG_IGN (void (*)())1

I assume the complaint is about this definition, which isn't a
prototype.

Jeremy