Re: c-stack on mingw

2008-04-28 Thread Bruno Haible
> 2008-04-20 Bruno Haible <[EMAIL PROTECTED]> > > * lib/c-stack.c (die): Use raise. > * modules/c-stack (Depends-on): Add raise. Paul did not speak up in a week, so I applied this. Bruno

c-stack on mingw

2008-04-20 Thread Bruno Haible
On mingw, I see this warning: c-stack.c:122: warning: implicit declaration of function `kill' This should fix it. 'kill (getpid (), SIG)' is really only the ancient idiom for 'raise (SIG)'. The latter is ISO C compliant, the former is only POSIX compliant. Objections? 2008-04-20 Bruno Haible