1// Copyright 2019 Caleb Case
2
3// Package tmpfile provides a cross platform facility for creating temporary
4// files that are automatically cleaned up (even in the event of an unexpected
5// process exit).
6//
7// tmpfile provides support for at least Linux, OSX, and Windows. Generally any
8// POSIX system that adheres to the semantics of unlink
9// (https://pubs.opengroup.org/onlinepubs/9699919799/functions/unlink.html)
10// should work. Special handling is provided for other platforms.
11package tmpfile
12