/* $NetBSD: Lint_strcat.c,v 1.2 2000/06/14 06:49:08 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); }