From 2637f2ad3a41a2eca1072c9270809b1ffc0588d3 Mon Sep 17 00:00:00 2001 From: fbernon Date: Tue, 4 Mar 2008 14:26:44 +0000 Subject: [PATCH] inet_chksum.c: minor change for coding style --- src/core/ipv4/inet_chksum.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/ipv4/inet_chksum.c b/src/core/ipv4/inet_chksum.c index 1ad15a9b..9bba4f4c 100644 --- a/src/core/ipv4/inet_chksum.c +++ b/src/core/ipv4/inet_chksum.c @@ -36,13 +36,13 @@ * */ -#include - #include "lwip/opt.h" #include "lwip/inet_chksum.h" #include "lwip/inet.h" +#include + /* These are some reference implementations of the checksum algorithm, with the * aim of being simple, correct and fully portable. Checksumming is the * first thing you would want to optimize for your platform. If you create