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

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

#include <string.h>

/*ARGSUSED*/
char *
strncpy(char *dst, const char *src, size_t n)
{
	return NULL;
}
