Reformated comments and long lines
[mmh] / sbr / getans.c
index befbd9a..3e38d87 100644 (file)
@@ -1,10 +1,10 @@
 /*
- * getans.c -- get an answer from the user and return a string array
- *
- * This code is Copyright (c) 2002, by the authors of nmh.  See the
- * COPYRIGHT file in the root directory of the nmh distribution for
- * complete copyright information.
- */
+** getans.c -- get an answer from the user and return a string array
+**
+** This code is Copyright (c) 2002, by the authors of nmh.  See the
+** COPYRIGHT file in the root directory of the nmh distribution for
+** complete copyright information.
+*/
 
 #include <h/mh.h>
 #include <h/signals.h>
@@ -15,8 +15,8 @@ static char ansbuf[BUFSIZ];
 static jmp_buf sigenv;
 
 /*
- * static prototypes
- */
+** static prototypes
+*/
 static RETSIGTYPE intrser (int);
 
 
@@ -70,7 +70,7 @@ static RETSIGTYPE
 intrser (int i)
 {
        /*
-        * should this be siglongjmp?
-        */
+       ** should this be siglongjmp?
+       */
        longjmp (sigenv, 1);
 }