Update to FreeBSD head 2017-06-01

Git mirror commit dfb26efac4ce9101dda240e94d9ab53f80a9e131.

Update #3472.
This commit is contained in:
Sebastian Huber
2018-08-07 12:12:37 +02:00
parent a25e6a9d18
commit de261e0404
257 changed files with 3909 additions and 2604 deletions

View File

@@ -265,9 +265,9 @@ in_cksum_skip(m, len, skip)
int len;
int skip;
{
register u_short *w;
register unsigned sum = 0;
register int mlen = 0;
u_short *w;
unsigned sum = 0;
int mlen = 0;
int byte_swapped = 0;
union { char c[2]; u_short s; } su;