/* ISC license. */ /* MT-unsafe */ #ifndef SELFPIPE_INTERNAL_H #define SELFPIPE_INTERNAL_H #include #include extern sigset_t selfpipe_caught ; #ifdef SKALIBS_HASSIGNALFD extern int selfpipe_fd ; #else #include extern int selfpipe[2] ; #define selfpipe_fd selfpipe[0] extern sig_func selfpipe_tophalf ; #endif #endif