diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2016-09-02 16:29:56 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2016-09-02 16:29:56 +0000 |
commit | 3d187934ed73f8b463004ac689136f0230c7e39a (patch) | |
tree | bac26c9a307f2ef2192885deced56d5f86d5516f /usr.sbin/eigrpd/rtp.c | |
parent | 156601b8486994bb37a07fc8a95f7ecae4eb7d42 (diff) |
Remove superfluous includes and follow style(9).
ok claudio@ benno@
Diffstat (limited to 'usr.sbin/eigrpd/rtp.c')
-rw-r--r-- | usr.sbin/eigrpd/rtp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/eigrpd/rtp.c b/usr.sbin/eigrpd/rtp.c index fc504528de3..302ec97106f 100644 --- a/usr.sbin/eigrpd/rtp.c +++ b/usr.sbin/eigrpd/rtp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtp.c,v 1.5 2016/02/21 18:56:49 renato Exp $ */ +/* $OpenBSD: rtp.c,v 1.6 2016/09/02 16:29:55 renato Exp $ */ /* * Copyright (c) 2015 Renato Westphal <renato@openbsd.org> @@ -16,14 +16,14 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <sys/types.h> +#include <netinet/in.h> +#include <netinet/ip.h> + #include <stdlib.h> -#include <string.h> -#include <arpa/inet.h> #include "eigrpd.h" -#include "eigrp.h" #include "eigrpe.h" -#include "rde.h" #include "log.h" void rtp_retrans_timer(int, short, void *); |