NetBSD/lib/libc/string/Lint_strcat.c

18 lines
261 B
C

/* $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 <string.h>
/*ARGSUSED*/
char *
strcat(s, append)
char *s;
const char *append;
{
return (0);
}