diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-05-27 17:45:57 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-05-27 17:45:57 +0000 |
commit | 5d05f9ab43992c83f5ea86e6f65ba7b0d82ceeac (patch) | |
tree | 08dacad99573eed60c6d3a25e3693f605b0f5286 /include/unistd.h | |
parent | 41328c09e266d4a15f2fdccc2afd06dc3575e0e1 (diff) |
mktemp(3) et al. go in stdlib.h, not unistd.h. While there be more
explicit about mktemp(3) in the man page.
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/unistd.h b/include/unistd.h index 30329fc8abd..56a85a1521b 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.52 2004/01/13 18:10:53 millert Exp $ */ +/* $OpenBSD: unistd.h,v 1.53 2005/05/27 17:45:56 millert Exp $ */ /* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */ /*- @@ -165,10 +165,6 @@ int initgroups(const char *, gid_t); int iruserok(u_int32_t, int, const char *, const char *); int iruserok_sa(const void *, int, int, const char *, const char *); int lchown(const char *, uid_t, gid_t); -char *mkdtemp(char *); -int mkstemp(char *); -int mkstemps(char *, int); -char *mktemp(char *); int nfssvc(int, void *); int nice(int); void psignal(unsigned int, const char *); |