inet_chksum.c: minor change for coding style

This commit is contained in:
fbernon 2008-03-04 14:26:44 +00:00
parent 9b92f4c882
commit 2637f2ad3a

View File

@ -36,13 +36,13 @@
* *
*/ */
#include <string.h>
#include "lwip/opt.h" #include "lwip/opt.h"
#include "lwip/inet_chksum.h" #include "lwip/inet_chksum.h"
#include "lwip/inet.h" #include "lwip/inet.h"
#include <string.h>
/* These are some reference implementations of the checksum algorithm, with the /* These are some reference implementations of the checksum algorithm, with the
* aim of being simple, correct and fully portable. Checksumming is 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 * first thing you would want to optimize for your platform. If you create