Revision cdc0c0f52075e67be432807add1879a0799df583 authored by Junio C Hamano on 08 November 2013, 20:01:58 UTC, committed by Junio C Hamano on 08 November 2013, 20:01:58 UTC
The interaction between use of Perl in our test suite and NO_PERL
has been clarified a bit.

* jn/test-prereq-perl-doc:
  t/README: tests can use perl even with NO_PERL
2 parent s 4bc3d3f + f8fc0ee
Raw File
mkdtemp.c
#include "../git-compat-util.h"

char *gitmkdtemp(char *template)
{
	if (!*mktemp(template) || mkdir(template, 0700))
		return NULL;
	return template;
}
back to top