diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2016-09-08 13:58:16 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2016-09-08 13:58:16 +0000 |
commit | 2ac1498565ec79af8dca1fa7c8ebeca739df4b9b (patch) | |
tree | a3f4a2ddc7e53d173cd766146fc4b366d4fa19fe | |
parent | 3db64850761ab5855d8c381c5358127de5e9810f (diff) |
We need this for struct iovec; reduces diff to ping6(8)
-rw-r--r-- | sbin/ping/ping.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/ping/ping.c b/sbin/ping/ping.c index ffc02d1a6a9..bdac12df1d8 100644 --- a/sbin/ping/ping.c +++ b/sbin/ping/ping.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ping.c,v 1.152 2016/09/07 17:56:00 florian Exp $ */ +/* $OpenBSD: ping.c,v 1.153 2016/09/08 13:58:15 florian Exp $ */ /* $NetBSD: ping.c,v 1.20 1995/08/11 22:37:58 cgd Exp $ */ /* @@ -54,6 +54,7 @@ #include <sys/types.h> #include <sys/socket.h> #include <sys/time.h> +#include <sys/uio.h> #include <netinet/in.h> #include <netinet/ip.h> |