#include <fcntl.h>
#endif /* CRAY */
+#include <stdio.h>
+#include <string.h>
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
#include <signal.h>
#include <netdb.h>
#include <ctype.h>
{
int count; /* how many bytes we are going to need to send */
int i;
- int question = 0; /* was at least one argument a question */
struct sendlist *s; /* pointer to current command */
int success = 0;
int needconnect = 0;
send_wont(TELOPT_LINEMODE, 1);
send_dont(TELOPT_SGA, 1);
send_dont(TELOPT_ECHO, 1);
+ return 1; /* I'm guessing here -- eichin -- XXX */
}
#endif
int
setmode(bit)
+ int bit;
{
return dolmmode(bit, 1);
}
int
clearmode(bit)
+ int bit;
{
return dolmmode(bit, 0);
}
if (init) {
nep = &envlisthead;
- return;
+ return NULL; /* guessing here too -- eichin -- XXX */
}
if (nep) {
while (nep = nep->next) {
AC_PROG_INSTALL
KRB_INCLUDE
ISODE_INCLUDE
+AC_HAVE_HEADERS(unistd.h)
AC_HAVE_LIBRARY(termcap,AC_DEFINE(TERMCAP)
LIBS="$LIBS -ltermcap")
AC_HEADER_CHECK(termios.h,AC_DEFINE(USE_TERMIO) ac_termio=1)