diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2024-03-01 21:30:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2024-03-01 21:30:41 +0000 |
commit | 5e1c66d66cc28f1eb05dc9127b4f0d62400b54f9 (patch) | |
tree | 3853fb62c4b6fca29011a11c7ab2ea71c28b3e3c /include | |
parent | b59be6af76401428f142de3e0e7d16c1bacfcfb8 (diff) |
Add mkdtemps(3), like mkdtemp(3) but with a suffix.
OK deraadt@ tb@
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index ab8a2ae90c3..d1292e6d437 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdlib.h,v 1.76 2019/05/10 15:03:24 otto Exp $ */ +/* $OpenBSD: stdlib.h,v 1.77 2024/03/01 21:30:40 millert Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- @@ -289,6 +289,7 @@ void setprogname(const char *); extern char *suboptarg; /* getsubopt(3) external variable */ +char * mkdtemps(char *, int); int mkstemps(char *, int); int mkostemps(char *, int, int); |