mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
15 lines
269 B
C
15 lines
269 B
C
|
/*
|
||
|
* test-mktemp.c: code to exercise the creation of temporary files
|
||
|
*/
|
||
|
#include "git-compat-util.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
if (argc != 2)
|
||
|
usage("Expected 1 parameter defining the temporary file template");
|
||
|
|
||
|
xmkstemp(xstrdup(argv[1]));
|
||
|
|
||
|
return 0;
|
||
|
}
|