/* $NetBSD: Lint_strcat.c,v 1.1 1997/11/06 00:52:21 cgd Exp $ */ /* * This file placed in the public domain. * Chris Demetriou, November 5, 1997. */ #include /*ARGSUSED*/ char * strcat(s, append) char *s; const char *append; { return (0); }