Revision 9c6be8b5ab89bcc800d500f84358e4e63ee88042 authored by Junio C Hamano on 20 October 2014, 19:25:15 UTC, committed by Junio C Hamano on 20 October 2014, 19:25:16 UTC
* ss/contrib-subtree-contacts:
  contacts: add a Makefile to generate docs and install
  subtree: add an install-html target
2 parent s b946576 + 2ea40f0
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