mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Fix fallout from bits/string.h removal.
Remove one more string inline that was defined directly in string.h; in the absence of the rest of the inlines, it broke the build. Like other ifunc shims for these functions, x86_64/multiarch/{mem,st}pcpy.c need to define __NO_STRING_INLINES and NO_MEMPCPY_STPCPY_REDIRECT. * string/string.h (__mempcpy_inline): Delete. * sysdeps/x86_64/multiarch/mempcpy.c * sysdeps/x86_64/multiarch/stpcpy.c: Define NO_MEMPCPY_STPCPY_REDIRECT and __NO_STRING_INLINES before including string.h.
This commit is contained in:
@ -494,23 +494,6 @@ extern char *basename (const char *__filename) __THROW __nonnull ((1));
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if defined __USE_GNU && defined __OPTIMIZE__ \
|
||||
&& defined __extern_always_inline && __GNUC_PREREQ (3,2)
|
||||
# if !defined _FORCE_INLINES && !defined _HAVE_STRING_ARCH_mempcpy
|
||||
|
||||
#define mempcpy(dest, src, n) __mempcpy_inline (dest, src, n)
|
||||
#define __mempcpy(dest, src, n) __mempcpy_inline (dest, src, n)
|
||||
|
||||
__extern_always_inline void *
|
||||
__mempcpy_inline (void *__restrict __dest,
|
||||
const void *__restrict __src, size_t __n)
|
||||
{
|
||||
return (char *) memcpy (__dest, __src, __n) + __n;
|
||||
}
|
||||
|
||||
# endif
|
||||
#endif
|
||||
|
||||
__END_DECLS
|
||||
|
||||
#endif /* string.h */
|
||||
|
Reference in New Issue
Block a user