DEBSOURCES
Skip Quicknav
sources / cgit / 1.1%2Bgit2.10.2-3%2Bdeb9u1 / git / compat / mkdtemp.c
12345678
#include "../git-compat-util.h" char *gitmkdtemp(char *template) { if (!*mktemp(template) || mkdir(template, 0700)) return NULL; return template; }