]> diplodocus.org Git - nmh/blobdiff - sbr/atooi.c
scansbr.c: Move interface to own file.
[nmh] / sbr / atooi.c
index ab58cb46cb7693d531310335d2628efb4c0822e7..e06e1b4e1a2d74c2f11eb8ab1c0a31047b1d6f03 100644 (file)
@@ -1,17 +1,18 @@
-
-/*
- * atooi.c -- octal version of atoi()
+/* 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>
+#include "h/mh.h"
+#include "atooi.h"
 
 
 int
 atooi(char *cp)
 {
-    register int i, base;
+    int i, base;
 
     i = 0;
     base = 8;