Reformated comments and long lines
[mmh] / h / signals.h
index d65da58..645c340 100644 (file)
@@ -1,20 +1,20 @@
 /*
- * signals.h -- header file for nmh signal interface
- */
+** signals.h -- header file for nmh signal interface
+*/
 
 #include <config.h>
 
 /*
- * 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);