Revision 325602ce120e7bd7321b9ed409b49b48fd20888e authored by Junio C Hamano on 07 October 2014, 20:41:03 UTC, committed by Junio C Hamano on 07 October 2014, 20:41:03 UTC
* maint:
  git-tag.txt: Add a missing hyphen to `-s`
2 parent s 565301e + 3c2dc76
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