diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-09-15 08:33:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-09-15 08:33:45 +0000 |
commit | 8efe967018dd79aacfe3ca1e2583f115d744e466 (patch) | |
tree | 7590704be6cf03c87242043f5909e12eb4150356 /include | |
parent | c4f72d1426e03f046ac54a00d733a4a52c3a5d4b (diff) | |
download | busybox-w32-8efe967018dd79aacfe3ca1e2583f115d744e466.tar.gz busybox-w32-8efe967018dd79aacfe3ca1e2583f115d744e466.tar.bz2 busybox-w32-8efe967018dd79aacfe3ca1e2583f115d744e466.zip |
Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize)
to ensure proper fallback behavior on, i.e. serial consoles.
-Erik
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index 4bfcc7a8b..a6ccff421 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -462,9 +462,10 @@ typedef struct llist_s { | |||
462 | } llist_t; | 462 | } llist_t; |
463 | extern llist_t *llist_add_to(llist_t *old_head, char *new_item); | 463 | extern llist_t *llist_add_to(llist_t *old_head, char *new_item); |
464 | 464 | ||
465 | void print_login_issue(const char *issue_file, const char *tty); | 465 | extern void print_login_issue(const char *issue_file, const char *tty); |
466 | void print_login_prompt(void); | 466 | extern void print_login_prompt(void); |
467 | 467 | ||
468 | void vfork_daemon_rexec(int argc, char **argv, char *foreground_opt); | 468 | extern void vfork_daemon_rexec(int argc, char **argv, char *foreground_opt); |
469 | extern void get_terminal_width_height(int fd, int *width, int *height); | ||
469 | 470 | ||
470 | #endif /* __LIBCONFIG_H__ */ | 471 | #endif /* __LIBCONFIG_H__ */ |