X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..f1595ee7fc4db1bf8c50b00a796fb3f9b1d66c21:/sbr/cpydgst.c?ds=sidebyside diff --git a/sbr/cpydgst.c b/sbr/cpydgst.c index 068fb6e8..55df3fc6 100644 --- a/sbr/cpydgst.c +++ b/sbr/cpydgst.c @@ -3,7 +3,9 @@ * cpydgst.c -- copy from one fd to another in encapsulating mode * -- (do dashstuffing of input data). * - * $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 @@ -33,9 +35,9 @@ void cpydgst (int in, int out, char *ifile, char *ofile) { - register int i, j, state; - register char *cp, *ep; - register char *bp, *dp; + int i, j, state; + char *cp, *ep; + char *bp, *dp; char buffer[BUFSIZ], outbuf[BUFSIZ]; dp = (bp = outbuf) + sizeof outbuf;