[BACK]Return to ttyio.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mg

Diff for /src/usr.bin/mg/ttyio.c between version 1.35 and 1.36

version 1.35, 2014/03/20 07:47:29 version 1.36, 2015/03/19 21:22:15
Line 9 
Line 9 
  * keyboard characters, and write characters to the display in a barely   * keyboard characters, and write characters to the display in a barely
  * buffered fashion.   * buffered fashion.
  */   */
 #include "def.h"  
   
 #include <sys/types.h>  
 #include <sys/time.h>  
 #include <sys/ioctl.h>  #include <sys/ioctl.h>
   #include <sys/queue.h>
   #include <sys/time.h>
   #include <sys/types.h>
   #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <poll.h>  #include <poll.h>
 #include <termios.h>  #include <signal.h>
   #include <stdio.h>
   #include <stdlib.h>
   #include <string.h>
 #include <term.h>  #include <term.h>
   #include <termios.h>
   #include <unistd.h>
   
   #include "def.h"
   
 #define NOBUF   512                     /* Output buffer size. */  #define NOBUF   512                     /* Output buffer size. */
   

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36