From 165f5b394fa337e71e08435b51108f4394199b2b Mon Sep 17 00:00:00 2001
From: Denis Vlasenko <vda.linux@googlemail.com>
Date: Mon, 31 Mar 2008 20:30:38 +0000
Subject: tcpudp: trivial build fix

---
 networking/tcpudp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/networking/tcpudp.c b/networking/tcpudp.c
index 5da4de505..0b604af48 100644
--- a/networking/tcpudp.c
+++ b/networking/tcpudp.c
@@ -29,10 +29,10 @@
  * - don't know how to retrieve ORIGDST for udp.
  */
 
-#include <limits.h>
-#include <linux/netfilter_ipv4.h> /* wants <limits.h> */
-
 #include "libbb.h"
+/* Wants <limits.h> etc, thus included after libbb.h: */
+#include <linux/netfilter_ipv4.h>
+
 // TODO: move into this file:
 #include "tcpudp_perhost.h"
 
-- 
cgit v1.2.3-55-g6feb