Make this compile with -Wall -Werror

This commit is contained in:
Peter Wemm 1999-12-27 08:40:40 +00:00
parent e1f5bec4cc
commit 0ba6f08f0a

View File

@ -66,6 +66,7 @@ static char rcsid[] = "$FreeBSD$";
#include <ctype.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
/*
* ASCII internet address interpretation routine.
@ -98,7 +99,7 @@ inet_aton(cp, addr)
u_long val;
char *c;
char *endptr;
int base, gotend, n;
int gotend, n;
c = (char *)cp;
n = 0;