diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 16:13:33 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 16:13:33 +0000 |
commit | 8a503be840f2632c96af918ad2ba553b9de49dd9 (patch) | |
tree | 275c4eb369383b1feedc91fe363e18838f028510 /include | |
parent | 769532857560df0cac747a85cdaa31b764cca6c4 (diff) | |
download | busybox-8a503be840f2632c96af918ad2ba553b9de49dd9.tar.gz |
#ifdef out re_execed on MMU machines
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 0cfc22018..152b87099 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -617,6 +617,7 @@ extern void print_login_issue(const char *issue_file, const char *tty); extern void print_login_prompt(void); #ifdef BB_NOMMU extern void vfork_daemon_rexec(int nochdir, int noclose, char **argv); +extern smallint re_execed; #endif extern int get_terminal_width_height(const int fd, int *width, int *height); @@ -761,7 +762,6 @@ enum { /* DO NOT CHANGE THESE VALUES! cp.c, mv.c, install.c depend on them. */ }; #define FILEUTILS_CP_OPTSTR "pdRfils" USE_SELINUX("c") -extern smallint re_execed; extern const char *applet_name; extern const char BB_BANNER[]; |