/*      $NetBSD: Lint_memccpy.c,v 1.2 2024/12/01 16:16:56 rillig Exp $  */

/*
* This file placed in the public domain.
* Matthias Pfaller, December 5, 1997.
*/

#include <string.h>

/*ARGSUSED*/
void *
memccpy(void *dst, const void *src, int c, size_t n)
{
       return NULL;
}