summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-02-22 22:45:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-02-22 22:51:09 (GMT)
commit7eb45b5f78e257a682ec825839b4b33e025a9615 (patch)
treea29c5b4ed49c853a6e70f0d96b1effee81023cbc /git-compat-util.h
parent7b35eaf8c50609ae4899dcde7fcaa1be0df657df (diff)
downloadgit-7eb45b5f78e257a682ec825839b4b33e025a9615.zip
git-7eb45b5f78e257a682ec825839b4b33e025a9615.tar.gz
git-7eb45b5f78e257a682ec825839b4b33e025a9615.tar.bz2
git-compat-util: drop mempcpy compat code
There are no callers of this left, as the last one was dropped in the previous patch. And there are not likely to be new ones, as the function has been around since 2010 without gaining any new callers. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index 57ff9fb..1459f9b 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -681,7 +681,6 @@ extern int git_vsnprintf(char *str, size_t maxsize,
#ifdef __GLIBC_PREREQ
#if __GLIBC_PREREQ(2, 1)
#define HAVE_STRCHRNUL
-#define HAVE_MEMPCPY
#endif
#endif
@@ -695,14 +694,6 @@ static inline char *gitstrchrnul(const char *s, int c)
}
#endif
-#ifndef HAVE_MEMPCPY
-#define mempcpy gitmempcpy
-static inline void *gitmempcpy(void *dest, const void *src, size_t n)
-{
- return (char *)memcpy(dest, src, n) + n;
-}
-#endif
-
#ifdef NO_INET_PTON
int inet_pton(int af, const char *src, void *dst);
#endif