[BACK]Return to common.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / patch

Diff for /src/usr.bin/patch/common.h between version 1.3 and 1.4

version 1.3, 1996/06/25 23:06:36 version 1.4, 1996/09/24 02:58:53
Line 17 
Line 17 
 #define Fclose (void)fclose  #define Fclose (void)fclose
 #define Fflush (void)fflush  #define Fflush (void)fflush
 #define Sprintf (void)sprintf  #define Sprintf (void)sprintf
 #define Mktemp (void)mktemp  
 #define Strcpy (void)strcpy  #define Strcpy (void)strcpy
 #define Strcat (void)strcat  #define Strcat (void)strcat
   
Line 83 
Line 82 
 #define strnNE(s1,s2,l) (strncmp(s1, s2, l))  #define strnNE(s1,s2,l) (strncmp(s1, s2, l))
 #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l))  #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l))
   
   #define Mkstemp mkstemp
   
 /* typedefs */  /* typedefs */
   
 typedef char bool;  typedef char bool;
Line 168 
Line 169 
 char *strcpy();  char *strcpy();
 char *strcat();  char *strcat();
 char *rindex();  char *rindex();
 char *mktemp();  int  mkstemp();
 #if 0                           /* This can cause a prototype conflict.  */  #if 0                           /* This can cause a prototype conflict.  */
 #ifdef CHARSPRINTF  #ifdef CHARSPRINTF
 char *sprintf();  char *sprintf();

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