mirror of git://anongit.mindrot.org/openssh.git
8 lines
148 B
C
8 lines
148 B
C
|
#ifndef _MKTEMP_H
|
||
|
#define _MKTEMP_H
|
||
|
int mkstemps(char *path, int slen);
|
||
|
int mkstemp(char *path);
|
||
|
char *mkdtemp(char *path);
|
||
|
|
||
|
#endif /* _MKTEMP_H */
|