[BusyBox-cvs] busybox/include libbb.h,1.111,1.112

Erik Andersen andersen at busybox.net
Mon Sep 15 08:34:10 UTC 2003


Update of /var/cvs/busybox/include
In directory winder:/tmp/cvs-serv10511/include

Modified Files:
	libbb.h 
Log Message:
Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize)
to ensure proper fallback behavior on, i.e. serial consoles.
 -Erik


Index: libbb.h
===================================================================
RCS file: /var/cvs/busybox/include/libbb.h,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -d -r1.111 -r1.112
--- libbb.h	3 Sep 2003 12:18:38 -0000	1.111
+++ libbb.h	15 Sep 2003 08:33:45 -0000	1.112
@@ -462,9 +462,10 @@
 } llist_t;
 extern llist_t *llist_add_to(llist_t *old_head, char *new_item);
 
-void print_login_issue(const char *issue_file, const char *tty);
-void print_login_prompt(void);
+extern void print_login_issue(const char *issue_file, const char *tty);
+extern void print_login_prompt(void);
 
-void vfork_daemon_rexec(int argc, char **argv, char *foreground_opt);
+extern void vfork_daemon_rexec(int argc, char **argv, char *foreground_opt);
+extern void get_terminal_width_height(int fd, int *width, int *height);
 
 #endif /* __LIBCONFIG_H__ */




More information about the busybox-cvs mailing list