declare mktemp

This commit is contained in:
ceriel 1988-07-08 15:31:32 +00:00
parent 290cb0660d
commit 87901b15ba
2 changed files with 2 additions and 1 deletions

View file

@ -125,6 +125,7 @@ swttmp()
if (C_tmpfile == 0) {
static char tmpbuf[64];
register char *p = tmpbuf;
extern char *mktemp();
strcpy(p, C_tmpdir);
strcat(p, "/CodeXXXXXX");

View file

@ -24,7 +24,7 @@ File *C_ofp;
#ifndef INCORE
File *C_tfr, *C_old_ofp;
char *C_tmpfile;
char *strcpy(), *strcat(), *mktemp();
char *strcpy(), *strcat();
char *C_ibuf = 0;
long C_current_out;
#endif