]> diplodocus.org Git - nmh/blobdiff - sbr/atooi.c
Don't `else' after return. Simplify control flow.
[nmh] / sbr / atooi.c
index ab58cb46cb7693d531310335d2628efb4c0822e7..6a4e533060c6e0ef707892db3e839156c2ce2840 100644 (file)
@@ -2,7 +2,9 @@
 /*
  * atooi.c -- octal version of atoi()
  *
- * $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>
@@ -11,7 +13,7 @@
 int
 atooi(char *cp)
 {
-    register int i, base;
+    int i, base;
 
     i = 0;
     base = 8;