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

Diff for /src/usr.bin/script/script.c between version 1.18 and 1.19

version 1.18, 2003/06/03 02:56:15 version 1.19, 2003/06/10 22:20:50
Line 108 
Line 108 
 void handlesigwinch(int);  void handlesigwinch(int);
   
 int  int
 main(argc, argv)  main(int argc, char *argv[])
         int argc;  
         char *argv[];  
 {  {
         struct sigaction sa;          struct sigaction sa;
         struct termios rtt;          struct termios rtt;
Line 198 
Line 196 
 }  }
   
 void  void
 finish(signo)  finish(int signo)
         int signo;  
 {  {
         int save_errno = errno;          int save_errno = errno;
         int status, e = 1;          int status, e = 1;
Line 217 
Line 214 
 }  }
   
 void  void
 handlesigwinch(signo)  handlesigwinch(int signo)
         int signo;  
 {  {
         int save_errno = errno;          int save_errno = errno;
         struct winsize win;          struct winsize win;
Line 233 
Line 229 
 }  }
   
 void  void
 dooutput()  dooutput(void)
 {  {
         struct sigaction sa;          struct sigaction sa;
         struct itimerval value;          struct itimerval value;
Line 281 
Line 277 
 }  }
   
 void  void
 scriptflush(signo)  scriptflush(int signo)
         int signo;  
 {  {
         flush = 1;          flush = 1;
 }  }
   
 void  void
 doshell()  doshell(void)
 {  {
         char *shell;          char *shell;
   
Line 305 
Line 300 
 }  }
   
 void  void
 fail()  fail(void)
 {  {
   
         (void)kill(0, SIGTERM);          (void)kill(0, SIGTERM);
Line 313 
Line 308 
 }  }
   
 void  void
 done(eval)  done(int eval)
         int eval;  
 {  {
         time_t tvec;          time_t tvec;
   

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19