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

Diff for /src/usr.bin/tip/Attic/uucplock.c between version 1.4 and 1.5

version 1.4, 1997/08/24 23:22:22 version 1.5, 1997/09/01 23:24:27
Line 41 
Line 41 
 static char rcsid[] = "$OpenBSD$";  static char rcsid[] = "$OpenBSD$";
 #endif /* not lint */  #endif /* not lint */
   
 #include <stdio.h>  
 #include <string.h>  
 #include <unistd.h>  
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/file.h>  #include <sys/file.h>
 #include <sys/dir.h>  #include <sys/dir.h>
   #include <stdio.h>
   #include <string.h>
   #include <signal.h>
   #include <unistd.h>
   #include <stdlib.h>
 #include <errno.h>  #include <errno.h>
 #include "pathnames.h"  #include "pathnames.h"
   
Line 56 
Line 58 
  *        -1 - failure   *        -1 - failure
  */   */
   
   int
 uu_lock(ttyname)  uu_lock(ttyname)
         char *ttyname;          char *ttyname;
 {  {
Line 118 
Line 121 
         return(0);          return(0);
 }  }
   
   int
 uu_unlock(ttyname)  uu_unlock(ttyname)
         char *ttyname;          char *ttyname;
 {  {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5