fsck_minix.c lost fat.
[oweals/busybox.git] / internal.h
index c3814779bcf1088eef8d03ceb82d574f68522c4a..090fcc8fb849447a56ce4f5f84ce6442eeac45ef 100644 (file)
@@ -1,4 +1,4 @@
-
+/* vi: set sw=4 ts=4: */
 /*
  * Busybox main internal header file
  *
@@ -31,6 +31,7 @@
 #include <string.h>
 #include <unistd.h>
 #include <sys/stat.h>
+//#include <sys/param.h>
 #include <mntent.h>
 
 
@@ -186,6 +187,7 @@ extern pid_t findInitPid();
 #if defined BB_INIT || defined BB_SYSLOGD
 extern int device_open(char *device, int mode);
 #endif
+extern void whine_if_fstab_is_missing();
 
 #if defined BB_FEATURE_MOUNT_LOOP
 extern int del_loop(const char *device);
@@ -218,7 +220,7 @@ static inline int setbit(char * addr,unsigned int nr)
 {
   int __res = bit(addr, nr);
   addr[nr >> 3] |= (1<<(nr & 7));
-  return __res != 0; \
+  return __res != 0;
 }
 
 static inline int clrbit(char * addr,unsigned int nr)