declare mktemp
This commit is contained in:
parent
290cb0660d
commit
87901b15ba
2 changed files with 2 additions and 1 deletions
|
@ -125,6 +125,7 @@ swttmp()
|
||||||
if (C_tmpfile == 0) {
|
if (C_tmpfile == 0) {
|
||||||
static char tmpbuf[64];
|
static char tmpbuf[64];
|
||||||
register char *p = tmpbuf;
|
register char *p = tmpbuf;
|
||||||
|
extern char *mktemp();
|
||||||
|
|
||||||
strcpy(p, C_tmpdir);
|
strcpy(p, C_tmpdir);
|
||||||
strcat(p, "/CodeXXXXXX");
|
strcat(p, "/CodeXXXXXX");
|
||||||
|
|
|
@ -24,7 +24,7 @@ File *C_ofp;
|
||||||
#ifndef INCORE
|
#ifndef INCORE
|
||||||
File *C_tfr, *C_old_ofp;
|
File *C_tfr, *C_old_ofp;
|
||||||
char *C_tmpfile;
|
char *C_tmpfile;
|
||||||
char *strcpy(), *strcat(), *mktemp();
|
char *strcpy(), *strcat();
|
||||||
char *C_ibuf = 0;
|
char *C_ibuf = 0;
|
||||||
long C_current_out;
|
long C_current_out;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue