summaryrefslogtreecommitdiff
path: root/src/osdef1.h.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-12-01 17:25:20 +0100
committerBram Moolenaar <Bram@vim.org>2016-12-01 17:25:20 +0100
commitb129a447f3b580d4c941869672b0557c52c37e4d (patch)
tree8f21d9d1f0f3fd42e4bf5d203c280a44b166d0a8 /src/osdef1.h.in
parent65e08ee1d26aa7bf341ac0e0400839d696d1ab64 (diff)
downloadvim-git-b129a447f3b580d4c941869672b0557c52c37e4d.tar.gz
patch 8.0.0109v8.0.0109
Problem: Still checking if memcmp() exists while every system should have it now. Solution: Remove vim_memcmp(). (James McCoy, closes #1295)
Diffstat (limited to 'src/osdef1.h.in')
-rw-r--r--src/osdef1.h.in5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/osdef1.h.in b/src/osdef1.h.in
index a11e6ea50..5519104c9 100644
--- a/src/osdef1.h.in
+++ b/src/osdef1.h.in
@@ -50,12 +50,7 @@ extern int poll(struct pollfd *, long, int);
#ifdef HAVE_MEMSET
extern void *memset(void *, int, size_t);
#endif
-#ifdef HAVE_BCMP
-extern int bcmp(void *, void *, size_t);
-#endif
-#ifdef HAVE_MEMCMP
extern int memcmp(const void *, const void *, size_t);
-#endif
#ifdef HAVE_STRPBRK
extern char *strpbrk(const char *, const char *);
#endif