Revision 9c70e2c105f9c4b4708af6ae25d2678929b3d61d authored by Junio C Hamano on 12 November 2014, 20:13:25 UTC, committed by Junio C Hamano on 12 November 2014, 20:13:25 UTC
2 parent s bbebdc1 + 7fa1365
Raw File
test-mktemp.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;
}
back to top