1/*
2* test-mktemp.c: code to exercise the creation of temporary files
3*/
4#include "test-tool.h"
5#include "git-compat-util.h"
67
int cmd__mktemp(int argc, const char **argv)
8{
9if (argc != 2)
10usage("Expected 1 parameter defining the temporary file template");
1112
xmkstemp(xstrdup(argv[1]));
1314
return 0;
15}