Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-04-01 00:30:38 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2008-04-01 00:30:38 +0400
commit165f5b394fa337e71e08435b51108f4394199b2b (patch)
tree8cf42affbf54f2312b3202f9d5ca47c0f78d59d7 /networking/tcpudp.c
parentd943af058b36aa4847aabb07fe018780c994ae63 (diff)
tcpudp: trivial build fix
Diffstat (limited to 'networking/tcpudp.c')
-rw-r--r--networking/tcpudp.c6
1 files 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"