Staging
v0.5.1
Revision 4d06473928ee574910accbde05c19ef2263abdf6 authored by Junio C Hamano on 19 August 2013, 17:34:14 UTC, committed by Junio C Hamano on 19 August 2013, 17:34:14 UTC
As we had to revert two topics at the last minute, let's have
another (hopefully short) round of rc to make sure the final release
will be sound.

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