kill use of register

This commit is contained in:
tls 1997-01-09 16:07:09 +00:00
parent 8292047440
commit 4c7b22f594
2 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cat.c,v 1.11 1995/09/07 06:12:54 jtc Exp $ */
/* $NetBSD: cat.c,v 1.12 1997/01/09 16:07:09 tls Exp $ */
/*
* Copyright (c) 1989, 1993
@ -46,7 +46,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)cat.c 8.2 (Berkeley) 4/27/95";
#else
static char rcsid[] = "$NetBSD: cat.c,v 1.11 1995/09/07 06:12:54 jtc Exp $";
static char rcsid[] = "$NetBSD: cat.c,v 1.12 1997/01/09 16:07:09 tls Exp $";
#endif
#endif /* not lint */
@ -126,7 +126,7 @@ void
cook_args(argv)
char **argv;
{
register FILE *fp;
FILE *fp;
fp = stdin;
filename = "stdin";
@ -149,9 +149,9 @@ cook_args(argv)
void
cook_buf(fp)
register FILE *fp;
FILE *fp;
{
register int ch, gobble, line, prev;
int ch, gobble, line, prev;
line = gobble = 0;
for (prev = '\n'; (ch = getc(fp)) != EOF; prev = ch) {
@ -214,7 +214,7 @@ void
raw_args(argv)
char **argv;
{
register int fd;
int fd;
fd = fileno(stdin);
filename = "stdin";
@ -237,9 +237,9 @@ raw_args(argv)
void
raw_cat(rfd)
register int rfd;
int rfd;
{
register int nr, nw, off, wfd;
int nr, nw, off, wfd;
static int bsize;
static char *buf;
struct stat sbuf;

View File

@ -1,4 +1,4 @@
/* $NetBSD: utils.c,v 1.4 1995/08/02 07:17:02 jtc Exp $ */
/* $NetBSD: utils.c,v 1.5 1997/01/09 16:07:33 tls Exp $ */
/*-
* Copyright (c) 1991, 1993, 1994
@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)utils.c 8.3 (Berkeley) 4/1/94";
#else
static char rcsid[] = "$NetBSD: utils.c,v 1.4 1995/08/02 07:17:02 jtc Exp $";
static char rcsid[] = "$NetBSD: utils.c,v 1.5 1997/01/09 16:07:33 tls Exp $";
#endif
#endif /* not lint */
@ -237,7 +237,7 @@ copy_special(from_stat, exists)
int
setfile(fs, fd)
register struct stat *fs;
struct stat *fs;
int fd;
{
static struct timeval tv[2];