blob: 6ae36d0005354cf110c74236ebdd4defc26b6b0a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* This is never meant to be executed; we just want to check for the */
/* presence of mkdtemp and mkstemp by whether this links without error. */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int
#ifdef KR_headers
main(argc, argv) int argc; char **argv;
#else
main(int argc, char **argv)
#endif
{
char buf[16];
if (argc < 0) {
#ifndef NO_MKDTEMP
mkdtemp(buf);
#else
mkstemp(buf);
#endif
}
return 0;
}
|