aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2025-12-06 14:28:26 +0100
committerJunio C Hamano <gitster@pobox.com>2025-12-07 07:28:12 +0900
commit47bf14750eee7e43e12d20414d3698f203245a35 (patch)
treeac1aaba9b680040d7941d5ad9ff14d0cd93c7c35
parent5ecd3590a3052820eeb3f1d6764584c537b68938 (diff)
downloadgit-47bf14750eee7e43e12d20414d3698f203245a35.tar.gz
compat: remove mingw_mktemp()
Remove the mktemp(3) compatibility function now that its last caller was removed by the previous commit. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--compat/mingw-posix.h3
-rw-r--r--compat/mingw.c12
2 files changed, 0 insertions, 15 deletions
diff --git a/compat/mingw-posix.h b/compat/mingw-posix.h
index 631a208684..0939feff27 100644
--- a/compat/mingw-posix.h
+++ b/compat/mingw-posix.h
@@ -241,9 +241,6 @@ int mingw_chdir(const char *dirname);
int mingw_chmod(const char *filename, int mode);
#define chmod mingw_chmod
-char *mingw_mktemp(char *template);
-#define mktemp mingw_mktemp
-
char *mingw_getcwd(char *pointer, int len);
#define getcwd mingw_getcwd
diff --git a/compat/mingw.c b/compat/mingw.c
index 736a07a028..abdc968421 100644
--- a/compat/mingw.c
+++ b/compat/mingw.c
@@ -1162,18 +1162,6 @@ unsigned int sleep (unsigned int seconds)
return 0;
}
-char *mingw_mktemp(char *template)
-{
- wchar_t wtemplate[MAX_PATH];
- if (xutftowcs_path(wtemplate, template) < 0)
- return NULL;
- if (!_wmktemp(wtemplate))
- return NULL;
- if (xwcstoutf(template, wtemplate, strlen(template) + 1) < 0)
- return NULL;
- return template;
-}
-
int mkstemp(char *template)
{
return git_mkstemp_mode(template, 0600);