Browse Source

fix incorrect GNU sighandler_t typedef

rs-1.0
Rich Felker 16 years ago
parent
commit
0f5b43550c
  1. 2
      include/signal.h

2
include/signal.h

@ -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

Loading…
Cancel
Save