Revision e147e9693ace9f7c6dafd4095d3cde80d047e787 authored by Junio C Hamano on 21 February 2012, 23:14:41 UTC, committed by Junio C Hamano on 21 February 2012, 23:14:41 UTC
* cb/receive-pack-keep-errors:
  do not override receive-pack errors
2 parent s c7707a4 + ef7e93d
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