update memcpy patch

This commit is contained in:
Sebastian Hugentobler 2017-06-13 15:47:41 +02:00
parent 6e8dd659dd
commit fdd49e9ef8

View File

@ -1,13 +1,13 @@
diff --git a/lib/pr_fnmatch.c b/lib/pr_fnmatch.c diff --git a/lib/pr_fnmatch.c b/lib/pr_fnmatch.c
index a1cb101..03956c1 100644 index 8e46a22..623321f 100644
--- a/lib/pr_fnmatch.c --- a/lib/pr_fnmatch.c
+++ b/lib/pr_fnmatch.c +++ b/lib/pr_fnmatch.c
@@ -250,7 +250,7 @@ __wcschrnul (const wchar_t *s, wint_t c) @@ -253,7 +253,7 @@ __wcschrnul (const wchar_t *s, wint_t c)
# ifdef HAVE_MEMPCPY
# define MEMPCPY(D, S, N) mempcpy (D, S, N)
# else
-# define MEMPCPY(D, S, N) __mempcpy (D, S, N)
+# define MEMPCPY(D, S, N) mempcpy (D, S, N)
# endif # endif
# define STRLEN(S) strlen (S)
# define STRCAT(D, S) strcat (D, S)
-# define MEMPCPY(D, S, N) __mempcpy (D, S, N)
+# define MEMPCPY(D, S, N) mempcpy (D, S, N)
# define MEMCHR(S, C, N) memchr (S, C, N) # define MEMCHR(S, C, N) memchr (S, C, N)
# define STRCOLL(S1, S2) strcoll (S1, S2) # define STRCOLL(S1, S2) strcoll (S1, S2)
# include "pr_fnmatch_loop.c"