diff options
author | Erik Andersen | 2000-02-09 04:16:43 +0000 |
---|---|---|
committer | Erik Andersen | 2000-02-09 04:16:43 +0000 |
commit | e132f4b09e5c9aedaef97f65279e8702633fd425 (patch) | |
tree | 50bfe1c027ff760e426ae31442da73e536dd4baa /internal.h | |
parent | e49d5ecbbe51718fa925b6890a735e5937cc2aa2 (diff) | |
download | busybox-e132f4b09e5c9aedaef97f65279e8702633fd425.zip busybox-e132f4b09e5c9aedaef97f65279e8702633fd425.tar.gz |
Fixed the init problem where it wouldn't unmount filesystems
on reboot. Also fixed swapoff -a so it works.
-Erik
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |