/* From mkstemp.m4 */ #include #include int main () { int i; char template[] = "mkstemp-test-tmpfile.XXXXXX"; int fd = mkstemp (template); if (fd == -1) exit (1); close (fd); printf("%s\n",template); exit (0); }