1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 01:52:55 +03:00

[package] busybox: fix build error in insmod applet on 2.4 (closes: #5220)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16107 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2009-05-27 13:21:48 +00:00
parent 8316176c4f
commit 65ad43e4c0

View File

@ -4,11 +4,11 @@
#include "libbb.h"
#include "modutils.h"
+#include <sys/utsname.h>
+#ifndef CONFIG_FEATURE_2_4_MODULES
+#include <sys/mman.h>
+#include <asm/unistd.h>
+#include <sys/syscall.h>
+#include <sys/utsname.h>
+#endif
+
+static char *g_filename = NULL;