https://github.com/git/git
Revision eadd122b5e88727b3499ea10fcc695f534354be8 authored by Jean-Noel Avila on 01 November 2013, 14:35:08 UTC, committed by Jean-Noel Avila on 08 November 2013, 22:27:57 UTC
Signed-off-by: Jean-Noel Avila <jn.avila@free.fr>
Signed-off-by: Sebastien Helleu <flashcode@flashtux.org>
1 parent 9031479
Raw File
Tip revision: eadd122b5e88727b3499ea10fcc695f534354be8 authored by Jean-Noel Avila on 01 November 2013, 14:35:08 UTC
l10n: fr.po 2194/1294 messages translated
Tip revision: eadd122
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