diff options
| author | 2016-09-02 16:29:54 +0000 | |
|---|---|---|
| committer | 2016-09-02 16:29:54 +0000 | |
| commit | 8072de9bf2f70b610ae986db861afe6ebd0b0672 (patch) | |
| tree | 4336aa043c7f91803ff272720a12a811643166bd /usr.sbin/eigrpd/reply.c | |
| parent | Fix broken pipe teardown. (diff) | |
| download | wireguard-openbsd-8072de9bf2f70b610ae986db861afe6ebd0b0672.tar.xz wireguard-openbsd-8072de9bf2f70b610ae986db861afe6ebd0b0672.zip | |
Remove superfluous includes and follow style(9).
ok claudio@ benno@
Diffstat (limited to 'usr.sbin/eigrpd/reply.c')
| -rw-r--r-- | usr.sbin/eigrpd/reply.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.sbin/eigrpd/reply.c b/usr.sbin/eigrpd/reply.c index bb0e57d6b17..9e4ee903480 100644 --- a/usr.sbin/eigrpd/reply.c +++ b/usr.sbin/eigrpd/reply.c @@ -1,4 +1,4 @@ -/* $OpenBSD: reply.c,v 1.2 2015/10/04 23:00:10 renato Exp $ */ +/* $OpenBSD: reply.c,v 1.3 2016/09/02 16:29:55 renato Exp $ */ /* * Copyright (c) 2015 Renato Westphal <renato@openbsd.org> @@ -16,14 +16,16 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <stdlib.h> +#include <sys/types.h> #include <netinet/in.h> +#include <netinet/ip.h> #include <netinet/ip6.h> +#include <stdlib.h> + #include "eigrpd.h" -#include "eigrp.h" -#include "log.h" #include "eigrpe.h" +#include "log.h" extern struct eigrpd_conf *econf; |
