diff options
Diffstat (limited to 'usr.bin/patch/common.h')
-rw-r--r-- | usr.bin/patch/common.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/patch/common.h b/usr.bin/patch/common.h index 2a7154c5596..96421b22d50 100644 --- a/usr.bin/patch/common.h +++ b/usr.bin/patch/common.h @@ -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 *getenv(); char *strcpy(); char *strcat(); char *rindex(); -char *mktemp(); +int mkstemp(); #if 0 /* This can cause a prototype conflict. */ #ifdef CHARSPRINTF char *sprintf(); |