c34c2606cf
Scripted change: $ find lib/ -type f \ | grep '\.h$' \ | sed 's,lib/,libmisc/,' \ | sed 's,\.h$,.c,' \ | xargs find 2>/dev/null \ | xargs mv -t lib/; Plus updating the Makefiles. Closes: <https://github.com/shadow-maint/shadow/issues/791> Closes: <https://bugs.gentoo.org/912446> Link: <https://github.com/shadow-maint/shadow/issues/763#issuecomment-1664383425> Link: <https://github.com/shadow-maint/shadow/pull/776> Link: <https://github.com/shadow-maint/shadow/commit/d0518cc250afeaceb772a7f50a900cfc9b3ab937> Reported-by: Christian Bricart <christian@bricart.de> Reported-by: Robert Marmorstein <robert@marmorstein.org> Cc: Sam James <sam@gentoo.org> [ jubalh tested the openSUSE package ] Tested-by: Michael Vetter <jubalh@iodoru.org> Acked-by: Michael Vetter <jubalh@iodoru.org> [ Robert F. tested the Gentoo package ] Tested-by: Robert Förster <Dessa@gmake.de> Cc: David Seifert <soap@gentoo.org> Signed-off-by: Alejandro Colomar <alx@kernel.org>
24 lines
329 B
C
24 lines
329 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023, Alejandro Colomar <alx@kernel.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#if !defined(HAVE_MEMPCPY)
|
|
|
|
#ident "$Id$"
|
|
|
|
#include "mempcpy.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
extern inline void *mempcpy(void *restrict dst, const void *restrict src,
|
|
size_t n);
|
|
|
|
|
|
#endif
|