summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-09-15 08:33:45 +0000
committerEric Andersen <andersen@codepoet.org>2003-09-15 08:33:45 +0000
commit8efe967018dd79aacfe3ca1e2583f115d744e466 (patch)
tree7590704be6cf03c87242043f5909e12eb4150356 /include
parentc4f72d1426e03f046ac54a00d733a4a52c3a5d4b (diff)
downloadbusybox-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.h7
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;
463extern llist_t *llist_add_to(llist_t *old_head, char *new_item); 463extern llist_t *llist_add_to(llist_t *old_head, char *new_item);
464 464
465void print_login_issue(const char *issue_file, const char *tty); 465extern void print_login_issue(const char *issue_file, const char *tty);
466void print_login_prompt(void); 466extern void print_login_prompt(void);
467 467
468void vfork_daemon_rexec(int argc, char **argv, char *foreground_opt); 468extern void vfork_daemon_rexec(int argc, char **argv, char *foreground_opt);
469extern void get_terminal_width_height(int fd, int *width, int *height);
469 470
470#endif /* __LIBCONFIG_H__ */ 471#endif /* __LIBCONFIG_H__ */