1/*
2* test-mktemp.c: code to exercise the creation of temporary files
3*/
4#include "git-compat-util.h"
56
int cmd_main(int argc, const char **argv)
7{
8if (argc != 2)
9usage("Expected 1 parameter defining the temporary file template");
1011
xmkstemp(xstrdup(argv[1]));
1213
return 0;
14}