Remove warnings caused by #include <sys/mount.h> in platform.h. Apparently

we redefine a lot of stuff from standard header files...
This commit is contained in:
Rob Landley
2006-06-16 04:25:19 +00:00
parent 9947a244d4
commit bc8c50351f
4 changed files with 1 additions and 19 deletions

View File

@@ -35,24 +35,14 @@
*
*/
#include <stdio.h>
#include "busybox.h"
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <stdlib.h>
#include <sys/ioctl.h> /* for _IO */
#include <sys/utsname.h>
#include <asm/page.h> /* for PAGE_SIZE and PAGE_SHIFT */
/* we also get PAGE_SIZE via getpagesize() */
#include "busybox.h"
#ifndef _IO
/* pre-1.3.45 */
enum { BLKGETSIZE = 0x1260 };
#else
/* same on i386, m68k, arm; different on alpha, mips, sparc, ppc */
#define BLKGETSIZE _IO(0x12,96)
#endif
static char *device_name = NULL;
static int DEV = -1;