summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/tmpfile.c
blob: b20d8410dc7e8f594e3a0ebc8c8d5a16bc646802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "dietstdio.h"
#include <stdlib.h>
#include <unistd.h>

FILE *tmpfile (void) {
  int fd;
  char template[20] = "/tmp/tmpfile-XXXXXX";
  if ((fd=mkstemp(template))<0)
    return 0;
  unlink(template);
  return __stdio_init_file(fd,1);
}