Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / strerror.c
index d780955..af8d58f 100644 (file)
@@ -1,8 +1,5 @@
-
 /*
  * strerror.c -- get error message string
- *
- * $Id$
  */
 
 #include <h/mh.h>
@@ -14,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;
 }