fix incorrect GNU sighandler_t typedef

This commit is contained in:
Rich Felker 2011-04-13 08:45:28 -04:00
parent 6597f9ac13
commit 0f5b43550c

View File

@ -100,7 +100,7 @@ void (*sigset(int, void (*)(int)))(int);
#endif
#ifdef _GNU_SOURCE
typedef int (*sighandler_t)(int);
typedef void (*sighandler_t)(int);
void (*bsd_signal(int, void (*)(int)))(int);
#endif