mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-19 23:36:54 +00:00
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 */
|