mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-27 11:55:06 +00:00
61d06d6bd1
Approved by: re (kib) MFC after: 1 week
13 lines
175 B
C
13 lines
175 B
C
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
char dirname[] = "/tmp/temp.XXXXXX";
|
|
|
|
if (mkdtemp(dirname) != dirname)
|
|
return 1;
|
|
return rmdir(dirname) == -1;
|
|
}
|