=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/patch/common.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/patch/common.h 1996/06/25 23:06:36 1.3 +++ src/usr.bin/patch/common.h 1996/09/24 02:58:53 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: common.h,v 1.3 1996/06/25 23:06:36 deraadt Exp $ */ +/* $OpenBSD: common.h,v 1.4 1996/09/24 02:58:53 millert Exp $ */ #define DEBUGGING @@ -17,7 +17,6 @@ #define Fclose (void)fclose #define Fflush (void)fflush #define Sprintf (void)sprintf -#define Mktemp (void)mktemp #define Strcpy (void)strcpy #define Strcat (void)strcat @@ -83,6 +82,8 @@ #define strnNE(s1,s2,l) (strncmp(s1, s2, l)) #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l)) +#define Mkstemp mkstemp + /* typedefs */ typedef char bool; @@ -168,7 +169,7 @@ char *strcpy(); char *strcat(); char *rindex(); -char *mktemp(); +int mkstemp(); #if 0 /* This can cause a prototype conflict. */ #ifdef CHARSPRINTF char *sprintf();