diff --git a/usr.bin/fmt/fmt.c b/usr.bin/fmt/fmt.c index fdaceba922ba..c26fbc19c70e 100644 --- a/usr.bin/fmt/fmt.c +++ b/usr.bin/fmt/fmt.c @@ -70,7 +70,6 @@ int lineno; /* Current input line */ int mark; /* Last place we saw a head line */ int center; -char *malloc(); /* for lint . . . */ char *headnames[] = {"To", "Subject", "Cc", 0}; /* diff --git a/usr.bin/more/main.c b/usr.bin/more/main.c index 7dd0fe4dd7d9..26be68bf196f 100644 --- a/usr.bin/more/main.c +++ b/usr.bin/more/main.c @@ -342,7 +342,7 @@ char * save(s) char *s; { - char *p, *strcpy(), *malloc(); + char *p, *strcpy(); p = malloc((u_int)strlen(s)+1); if (p == NULL) diff --git a/usr.sbin/arp/arp.c b/usr.sbin/arp/arp.c index b77122cb25eb..100a85f0537d 100644 --- a/usr.sbin/arp/arp.c +++ b/usr.sbin/arp/arp.c @@ -42,7 +42,7 @@ static char const copyright[] = #ifndef lint static char const sccsid[] = "@(#)from: arp.c 8.2 (Berkeley) 1/2/94"; -static char const freebsdid[] = "$Id: arp.c,v 1.9 1997/02/22 16:04:19 peter Exp $"; +static char const freebsdid[] = "$Id: arp.c,v 1.10 1997/03/31 05:09:46 imp Exp $"; #endif /* not lint */ /* @@ -380,7 +380,7 @@ dump(u_long addr) { int mib[6]; size_t needed; - char *host, *malloc(), *lim, *buf, *next; + char *host, *lim, *buf, *next; struct rt_msghdr *rtm; struct sockaddr_inarp *sin; struct sockaddr_dl *sdl;