Skip to content

Commit

Permalink
remove register variable decls, they are not meaningful these days
Browse files Browse the repository at this point in the history
  • Loading branch information
itojun committed Oct 26, 2001
1 parent b9167f9 commit 9dce0c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kame/kame/ping6/ping6.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $KAME: ping6.c,v 1.138 2001/09/18 02:33:08 jinmei Exp $ */
/* $KAME: ping6.c,v 1.139 2001/10/26 01:43:46 itojun Exp $ */

/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
Expand Down Expand Up @@ -295,7 +295,7 @@ main(argc, argv)
struct addrinfo hints;
fd_set *fdmaskp;
int fdmasks;
register int cc, i;
int cc, i;
int ch, fromlen, hold, packlen, preload, optval, ret_ga;
u_char *datap, *packet;
char *e, *target, *ifname = NULL;
Expand Down Expand Up @@ -2092,7 +2092,7 @@ get_pathmtu(mhdr)
*/
void
tvsub(out, in)
register struct timeval *out, *in;
struct timeval *out, *in;
{
if ((out->tv_usec -= in->tv_usec) < 0) {
--out->tv_sec;
Expand Down Expand Up @@ -2550,7 +2550,7 @@ void
fill(bp, patp)
char *bp, *patp;
{
register int ii, jj, kk;
int ii, jj, kk;
int pat[16];
char *cp;

Expand Down

0 comments on commit 9dce0c7

Please sign in to comment.