Tim Ruehsen wrote: > In the -E output there is > # 593 "./signal.h" 3 > extern int 0 > > ; > > Line #593-594 in signal.h is: > _GL_FUNCDECL_SYS (pthread_sigmask, int, > (int how, const sigset_t *new_mask, sigset_t > *old_mask));
It looks like there is a definition #define pthread_sigmask(how,newmask,oldmask) 0 somewhere. Gnulib does not contain such a definition of pthread_sigmask. Therefore I guess that it comes from the mingw header files. How does the definition/declaration of pthread_sigmask look like, in the mingw header files? Bruno