[BusyBox-cvs] CVS busybox/libbb
CVS User landley
landley at codepoet.org
Thu Dec 9 23:12:00 UTC 2004
Update of /var/cvs/busybox/libbb
In directory nail:/tmp/cvs-serv13574/busybox/libbb
Modified Files:
loop.c
Log Message:
Workaround for uClibc-specific header problem described here:
http://www.busybox.net/lists/busybox/2004-December/013276.html
Rob
--- /var/cvs/busybox/libbb/loop.c 2004/08/16 08:36:28 1.12
+++ /var/cvs/busybox/libbb/loop.c 2004/12/09 23:12:00 1.13
@@ -19,6 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include <asm/posix_types.h>
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
@@ -30,7 +31,6 @@
/* Grumble... The 2.6.x kernel breaks asm/posix_types.h
* so we get to try and cope as best we can... */
#include <linux/version.h>
-#include <asm/posix_types.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
#define __bb_kernel_dev_t __kernel_old_dev_t
More information about the busybox-cvs
mailing list