NetBSD-5.0.2/lib/libc/string/Lint_strcat.c

/* $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 <string.h>

/*ARGSUSED*/
char *
strcat(s, append)
	char *s;
	const char *append;
{
	return (0);
}