aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-31 10:19:51 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-31 10:19:51 +0000
commitc418d482baf414ef3f08a95ab99da7091f358b89 (patch)
tree4bcf7032041b501464f38ff9715f98453bebcbaf /include
parent507cd755a44628ced60acfa568b402cdf2f5547b (diff)
downloadbusybox-c418d482baf414ef3f08a95ab99da7091f358b89.tar.gz
- s/defined(__uClinux__)/BB_NOMMU/
This needs a second pass to: + add bb_daemon(unsigned char no_chdir, unsigned char no_close, const char*flag) + eventually globally export argc and argv, so we don't need to pass it to bb_daemon().
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 5f2309a25..e4be35d48 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -492,7 +492,7 @@ extern int my_query_module(const char *name, int which, void **buf, size_t *bufs
extern void print_login_issue(const char *issue_file, const char *tty);
extern void print_login_prompt(void);
-#if defined(__uClinux__)
+#ifdef BB_NOMMU
extern void vfork_daemon_rexec(int nochdir, int noclose,
int argc, char **argv, char *foreground_opt);
#endif