]> diplodocus.org Git - nmh/blobdiff - sbr/peekc.c
Reworked output handling.
[nmh] / sbr / peekc.c
index a687e69458b686a6ca04ecd3c520a9fc7e3338fc..3bfe42a3bcbd2e7099f413e20c49efc306871c76 100644 (file)
@@ -2,8 +2,6 @@
 /*
  * peekc.c -- peek at the next character in a stream
  *
 /*
  * peekc.c -- peek at the next character in a stream
  *
- * $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.
  * 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.
@@ -15,7 +13,7 @@
 int
 peekc(FILE *fp)
 {
 int
 peekc(FILE *fp)
 {
-    register int c;
+    int c;
 
     c = getc(fp);
     ungetc(c, fp);
 
     c = getc(fp);
     ungetc(c, fp);