From e86b516f9d40465740e61ea3c4d5353942451fcb Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 31 Jan 2020 14:23:15 -0600 Subject: [PATCH] include/netinet/arp.h: Previous network changes broke the build test (#193) --- include/netinet/arp.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/netinet/arp.h b/include/netinet/arp.h index c28a35900e..f9d66a19c1 100644 --- a/include/netinet/arp.h +++ b/include/netinet/arp.h @@ -1,7 +1,7 @@ /**************************************************************************** * include/netinet/arp.h * - * Copyright (C) 2009, 2012 Gregory Nutt. All rights reserved. + * Copyright (C) 2009, 2012, 2020 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -43,6 +43,8 @@ #include #include +#include + #include /**************************************************************************** @@ -81,7 +83,7 @@ struct arpreq struct sockaddr arp_ha; /* Hardware address */ struct sockaddr arp_netmask; /* Netmask of protocol address */ uint8_t arp_flags; /* Flags */ - uint8_t arp_dev[IFNAMSIZ+1]; /* Device name (zero terminated)*/ + uint8_t arp_dev[IFNAMSIZ + 1]; /* Device name (zero terminated) */ }; /****************************************************************************