Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / strerror.c
index 476a574..af8d58f 100644 (file)
@@ -1,4 +1,3 @@
-
 /*
  * strerror.c -- get error message string
  */
@@ -12,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;
 }