Check for tcgetattr() to enable HAVE_TCGETATTR in sysunix.c this seems

to work better on embedded targets running off the initial console.

Also, first merge of patches from Debian.  This part holds all of the
sysunix.c changes and some 8-bit patches and SIGSTP patches in the
editline.c file.
This commit is contained in:
Joachim Nilsson
2008-06-09 21:37:01 +02:00
parent 9a94fc9d4d
commit f7b2ea938d
6 changed files with 85 additions and 16 deletions

View File

@@ -67,6 +67,9 @@ extern int rl_erase;
extern int rl_intr;
extern int rl_kill;
extern int rl_quit;
#if defined(DO_SIGTSTP)
extern int rl_susp;
#endif /* defined(DO_SIGTSTP) */
extern char *rl_complete();
extern int rl_list_possib(char *pathname, char ***avp);
extern void rl_ttyset();
@@ -81,6 +84,7 @@ extern char *strcat();
extern char *strchr();
extern char *strrchr();
extern char *strcpy();
extern char *strdup();
extern int strcmp();
extern int strlen();
extern int strncmp();