mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-12 21:24:41 +00:00
3c06f6a0b2
openbsd-compat/. And resolve all ./configure and Makefile.in issues assocated. Logic: * All OpenBSD functions should have the same filename as in the OpenBSD tree * All 'home brew' functions have bsd-* infront of them. * All 'not really implemented' functions have fake-* infront of them.
12 lines
229 B
C
12 lines
229 B
C
#ifndef _BSD_MKTEMP_H
|
|
#define _BSD_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 /* _BSD_MKTEMP_H */
|