X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=h%2Fsignals.h;fp=h%2Fsignals.h;h=645c340d16752ec6bde641f8c4f7cbab05f910d3;hp=d65da58fb9551b130f44831e06f8fdf6713b5147;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=337338b404931f06f0db2119c9e145e8ca5a9860 diff --git a/h/signals.h b/h/signals.h index d65da58..645c340 100644 --- a/h/signals.h +++ b/h/signals.h @@ -1,20 +1,20 @@ /* - * signals.h -- header file for nmh signal interface - */ +** signals.h -- header file for nmh signal interface +*/ #include /* - * The type for a signal handler - */ +** The type for a signal handler +*/ typedef RETSIGTYPE (*SIGNAL_HANDLER)(int); /* - * If not a POSIX machine, then we create our - * own POSIX style signal sets functions. This - * currently assumes you have 31 signals, which - * should be true on most pure BSD machines. - */ +** If not a POSIX machine, then we create our +** own POSIX style signal sets functions. This +** currently assumes you have 31 signals, which +** should be true on most pure BSD machines. +*/ #ifndef POSIX_SIGNALS # define sigemptyset(s) (*(s) = 0) # define sigfillset(s) (*(s) = ~((sigset_t) 0), 0) @@ -24,8 +24,8 @@ typedef RETSIGTYPE (*SIGNAL_HANDLER)(int); #endif /* - * prototypes - */ +** prototypes +*/ int SIGPROCMASK (int, const sigset_t *, sigset_t *); SIGNAL_HANDLER SIGNAL (int, SIGNAL_HANDLER); SIGNAL_HANDLER SIGNAL2 (int, SIGNAL_HANDLER);