mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-23 18:23:25 +08:00
12 lines
217 B
C
12 lines
217 B
C
#ifndef _MKTEMP_H
|
|
#define _MKTEMP_H
|
|
|
|
#include "config.h"
|
|
#ifndef HAVE_MKDTEMP
|
|
int mkstemps(char *path, int slen);
|
|
int mkstemp(char *path);
|
|
char *mkdtemp(char *path);
|
|
#endif /* !HAVE_MKDTEMP */
|
|
|
|
#endif /* _MKTEMP_H */
|