mirror of
https://github.com/git/git.git
synced 2024-11-02 15:28:21 +01:00
e6e7530d10
This keeps top dir a bit less crowded. And because these programs are for testing purposes, it makes sense that they stay somewhere in t/ Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
14 lines
269 B
C
14 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;
|
|
}
|