diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2015-11-17 18:19:46 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2015-11-17 18:19:46 +0000 |
commit | 8c961fb3367cbb3160d5d4237632d432f93bbb63 (patch) | |
tree | c6f702d73791c97fb263be8c86ca213659086d8e /lib/libpcap/nametoaddr.c | |
parent | dc9d8c3dd6e55144de6f46c37258ab4bcf0994ed (diff) |
memory.h -> string.h
ok deraadt@
Diffstat (limited to 'lib/libpcap/nametoaddr.c')
-rw-r--r-- | lib/libpcap/nametoaddr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpcap/nametoaddr.c b/lib/libpcap/nametoaddr.c index 9013d68bb94..5d84ef2b50f 100644 --- a/lib/libpcap/nametoaddr.c +++ b/lib/libpcap/nametoaddr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nametoaddr.c,v 1.17 2015/10/24 06:07:43 mmcc Exp $ */ +/* $OpenBSD: nametoaddr.c,v 1.18 2015/11/17 18:19:45 mmcc Exp $ */ /* * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996 @@ -40,9 +40,9 @@ struct rtentry; #include <ctype.h> #include <errno.h> #include <stdlib.h> -#include <memory.h> #include <netdb.h> #include <stdio.h> +#include <string.h> #include "pcap-int.h" |