History log of /openbsd-current/lib/libc/stdlib/mktemp.c
Revision Date Author Comments
# 1.2 19-Jan-2024 millert

Make our mktemp(3) callback-driven and split into multiple files.
Previously, calling any of the mktemp(3) family would pull in
lstat(2), open(2) and mkdir(2). Now, only the necessary system
calls will be reachable from the binary. OK deraadt@ guenther@


# 1.1 19-Jan-2024 millert

Move mktemp.c to stdlib where it belongs.
OK deraadt@