diff options
author | 2015-11-17 18:19:45 +0000 | |
---|---|---|
committer | 2015-11-17 18:19:45 +0000 | |
commit | 3a9b5ec49390d98939399aef455f73fbfa3226f6 (patch) | |
tree | 359aabebc704a304f7a570f4dc5f75c5f2b1fd9b /lib/libpcap/gencode.c | |
parent | pledge() esposes a design issue in bgpd that will take a moment to (diff) | |
download | wireguard-openbsd-3a9b5ec49390d98939399aef455f73fbfa3226f6.tar.xz wireguard-openbsd-3a9b5ec49390d98939399aef455f73fbfa3226f6.zip |
memory.h -> string.h
ok deraadt@
Diffstat (limited to 'lib/libpcap/gencode.c')
-rw-r--r-- | lib/libpcap/gencode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpcap/gencode.c b/lib/libpcap/gencode.c index 51e30ab8490..eac4e0426a6 100644 --- a/lib/libpcap/gencode.c +++ b/lib/libpcap/gencode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gencode.c,v 1.41 2015/09/27 05:25:00 guenther Exp $ */ +/* $OpenBSD: gencode.c,v 1.42 2015/11/17 18:19:45 mmcc Exp $ */ /* * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998 @@ -42,9 +42,9 @@ struct rtentry; #include <stdlib.h> #include <stddef.h> -#include <memory.h> #include <setjmp.h> #include <stdarg.h> +#include <string.h> #include "pcap-int.h" |