From 62c27f7fce1991dbd0027863ccdc7c1b465bbdf8 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Mon, 3 Aug 2009 19:28:35 +0000 Subject: [PATCH] Fixed bug #27155: "'NULL' undeclared in inet_checksum.c" --- src/core/ipv4/inet_chksum.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/ipv4/inet_chksum.c b/src/core/ipv4/inet_chksum.c index dea8d5f2..185881ef 100644 --- a/src/core/ipv4/inet_chksum.c +++ b/src/core/ipv4/inet_chksum.c @@ -41,6 +41,8 @@ #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