Revision c70c09b6fc9339cba64d5ddd4698a2a3ef754dcd authored by Junio C Hamano on 17 August 2012, 19:14:57 UTC, committed by Junio C Hamano on 17 August 2012, 20:25:43 UTC
The one at kernel.org has not been updated for quite a while and
can no longer be called "the latest".

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 785ee49
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