* libc/include/sys/signal.h: Remove pthread_kill declaration

when __CYGWIN__ is defined.
This commit is contained in:
Thomas Fitzsimmons
2002-01-24 00:52:27 +00:00
parent 0ca5f51da4
commit bcc49082f6
2 changed files with 6 additions and 1 deletions

View File

@ -158,7 +158,7 @@ int _EXFUN(sigpending, (sigset_t *));
int _EXFUN(sigsuspend, (const sigset_t *));
int _EXFUN(sigpause, (int));
#if defined(_POSIX_THREADS)
#if defined(_POSIX_THREADS) && !defined(__CYGWIN__)
int _EXFUN(pthread_kill, (pthread_t thread, int sig));
#endif