From: Hans-Bernhard B. <br...@us...> - 2001-06-28 15:12:38
|
Update of /cvsroot/cscope/cscope/src In directory usw-pr-cvs1:/tmp/cvs-serv15620/src Modified Files: input.c Log Message: Test for presence of <sys/termios.h> Index: input.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/input.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** input.c 2001/05/30 21:10:56 1.7 --- input.c 2001/06/28 15:12:35 1.8 *************** *** 44,48 **** --- 44,50 ---- #include <setjmp.h> /* jmp_buf */ #include <stdlib.h> + #if HAVE_SYS_TERMIOS_H #include <sys/termios.h> + #endif static char const rcsid[] = "$Id$"; |