1/* $NetBSD: Lint_strcat.c,v 1.1 1997/11/06 00:52:21 cgd Exp $ */
2
3/*
4 * This file placed in the public domain.
5 * Chris Demetriou, November 5, 1997.
6 */
7
8#include <string.h>
9
10/*ARGSUSED*/
11char *
12strcat(s, append)
13	char *s;
14	const char *append;
15{
16	return (0);
17}
18