Home | History | Annotate | Line # | Download | only in string
      1  1.2    rillig /*	$NetBSD: Lint_memccpy.c,v 1.2 2024/12/01 16:16:56 rillig Exp $	*/
      2  1.1  matthias 
      3  1.1  matthias /*
      4  1.1  matthias  * This file placed in the public domain.
      5  1.1  matthias  * Matthias Pfaller, December 5, 1997.
      6  1.1  matthias  */
      7  1.1  matthias 
      8  1.1  matthias #include <string.h>
      9  1.1  matthias 
     10  1.1  matthias /*ARGSUSED*/
     11  1.1  matthias void *
     12  1.2    rillig memccpy(void *dst, const void *src, int c, size_t n)
     13  1.1  matthias {
     14  1.2    rillig 	return NULL;
     15  1.1  matthias }
     16