/* $NetBSD: Lint_strncat.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 /*ARGSUSED*/ char * strncat(char *dst, const char *src, size_t n) { return NULL; }