]> diplodocus.org Git - nmh/blobdiff - sbr/peekc.c
Reworked output handling.
[nmh] / sbr / peekc.c
index d77039bc30743f817adc41a8c89025393921484c..3bfe42a3bcbd2e7099f413e20c49efc306871c76 100644 (file)
@@ -2,7 +2,9 @@
 /*
  * 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.
  */
 
 #include <h/mh.h>
  */
 
 #include <h/mh.h>
@@ -11,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);