X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..a0250745de00aacfe03f82bdcc7e5e86f0768dd7:/sbr/peekc.c diff --git a/sbr/peekc.c b/sbr/peekc.c index d77039bc..3bfe42a3 100644 --- a/sbr/peekc.c +++ b/sbr/peekc.c @@ -2,7 +2,9 @@ /* * 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 @@ -11,7 +13,7 @@ int peekc(FILE *fp) { - register int c; + int c; c = getc(fp); ungetc(c, fp);