diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-11 04:04:40 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-11 04:04:40 +0000 |
commit | f785255a44c9cb751eb33dc8c7b52b210be8097b (patch) | |
tree | aeb1f6e6d123b0038985157bf6e82e0926e89b79 | |
parent | 776fe22756a0c6a57f30bbb39fd4ccd66181ba2f (diff) | |
download | busybox-w32-f785255a44c9cb751eb33dc8c7b52b210be8097b.tar.gz busybox-w32-f785255a44c9cb751eb33dc8c7b52b210be8097b.tar.bz2 busybox-w32-f785255a44c9cb751eb33dc8c7b52b210be8097b.zip |
Robert P. J. Day writes: even in the header file, make it clear that the routine depends on __uClinux__
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index edbc58206..acda7f615 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -479,8 +479,11 @@ extern void llist_free(llist_t *elm); | |||
479 | extern void print_login_issue(const char *issue_file, const char *tty); | 479 | extern void print_login_issue(const char *issue_file, const char *tty); |
480 | extern void print_login_prompt(void); | 480 | extern void print_login_prompt(void); |
481 | 481 | ||
482 | #if defined(__uClinux__) | ||
482 | extern void vfork_daemon_rexec(int nochdir, int noclose, | 483 | extern void vfork_daemon_rexec(int nochdir, int noclose, |
483 | int argc, char **argv, char *foreground_opt); | 484 | int argc, char **argv, char *foreground_opt); |
485 | #endif | ||
486 | |||
484 | extern int get_terminal_width_height(int fd, int *width, int *height); | 487 | extern int get_terminal_width_height(int fd, int *width, int *height); |
485 | extern unsigned long get_ug_id(const char *s, long (*__bb_getxxnam)(const char *)); | 488 | extern unsigned long get_ug_id(const char *s, long (*__bb_getxxnam)(const char *)); |
486 | 489 | ||