Staging
v0.5.1
https://github.com/git/git
Revision a6605d76cdad37ed3c55a7be4d2e0af0f4721bb2 authored by Junio C Hamano on 01 June 2011, 21:11:17 UTC, committed by Junio C Hamano on 01 June 2011, 21:11:17 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parent s 090a1a5 + e5af0de
Raw File
Tip revision: a6605d76cdad37ed3c55a7be4d2e0af0f4721bb2 authored by Junio C Hamano on 01 June 2011, 21:11:17 UTC
Sync with 1.7.5.4
Tip revision: a6605d7
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