Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / strerror.c
index ce78ada..af8d58f 100644 (file)
@@ -1,12 +1,5 @@
-
 /*
  * strerror.c -- get error message string
- *
- * $Id$
- *
- * 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>
@@ -18,8 +11,8 @@ extern char *sys_errlist[];
 char *
 strerror (int errnum)
 {
-   if (errnum > 0 && errnum < sys_nerr)
-       return sys_errlist[errnum];
-   else
-       return NULL;
+       if (errnum > 0 && errnum < sys_nerr)
+               return sys_errlist[errnum];
+       else
+               return NULL;
 }