Revision 2ff14e31bd8c91356d54b7bac064e7cc615e56b3 authored by Adrian Weimann on 30 January 2012, 19:29:33 UTC, committed by Junio C Hamano on 06 February 2012, 08:00:54 UTC
Signed-off-by: Adrian Weimann <adrian.weimann@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent f2120eb
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