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