Merge branch 'ar/request-pull-phrasofix' into maint
[git.git] / t / helper / test-mktemp.c
blob89d9b2f7bee05ff5c9fde31ba6798651ccee2947
1 /*
2 * test-mktemp.c: code to exercise the creation of temporary files
3 */
4 #include "git-compat-util.h"
6 int cmd_main(int argc, const char **argv)
8 if (argc != 2)
9 usage("Expected 1 parameter defining the temporary file template");
11 xmkstemp(xstrdup(argv[1]));
13 return 0;