]> andersk Git - openssh.git/blame - openbsd-compat/mktemp.h
- (djm) Bug #26: Use local mkstemp() rather than glibc's silly one. Fixes
[openssh.git] / openbsd-compat / mktemp.h
CommitLineData
0b202697 1/* $Id$ */
2
beb43d31 3#ifndef _BSD_MKTEMP_H
4#define _BSD_MKTEMP_H
fb723d82 5
6#include "config.h"
70e7d0b0 7#if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)
8efc0c15 8int mkstemps(char *path, int slen);
9int mkstemp(char *path);
10char *mkdtemp(char *path);
70e7d0b0 11#endif /* !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP) */
8efc0c15 12
beb43d31 13#endif /* _BSD_MKTEMP_H */
This page took 0.145867 seconds and 5 git commands to generate.