diff options
author | Ramsay Jones <ramsay@ramsayjones.plus.com> | 2017-02-28 01:26:06 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-28 11:54:21 -0800 |
commit | b2d593a7797f4f9452e46f722e181604a5582897 (patch) | |
tree | 9e49c52ad35ac1da1824a4d2563f00117018e30e /git-compat-util.h | |
parent | 34de5e4bb0dfe1c05b57c733c2196f1ad3881a98 (diff) | |
download | git-b2d593a7797f4f9452e46f722e181604a5582897.tar.gz |
wrapper.c: remove unused gitmkstemps() functionrj/remove-unused-mktemp
The last call to the mkstemps() function was removed in commit 659488326
("wrapper.c: delete dead function git_mkstemps()", 22-04-2016). In order
to support platforms without mkstemps(), this functionality was provided,
along with a Makefile build variable (NO_MKSTEMPS), by the gitmkstemps()
function. Remove the dead code, along with the defunct build machinery.
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index ef6d560e15..e626851fe9 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -639,11 +639,6 @@ extern int gitsetenv(const char *, const char *, int); extern char *gitmkdtemp(char *); #endif -#ifdef NO_MKSTEMPS -#define mkstemps gitmkstemps -extern int gitmkstemps(char *, int); -#endif - #ifdef NO_UNSETENV #define unsetenv gitunsetenv extern void gitunsetenv(const char *); |