[BACK]Return to Lint_strchr.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / string

File: [cvs.NetBSD.org] / src / lib / libc / string / Lint_strchr.c (download)

Revision 1.1.2.2, Sat Nov 8 22:01:01 1997 UTC (26 years, 4 months ago) by veego
Branch: netbsd-1-3
CVS Tags: netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001, netbsd-1-3-BETA
Changes since 1.1.2.1: +17 -0 lines

pull up changes from the trunk (approved by perry) from cgd:
>lint stubs for functions which ports use assembly versions.  When using
>an assembly version of a function, add the right lint stub to the Makefile.inc
>which specifies the source to build the function (see the
>arch/i386/*/Makefile.inc).  Can't just lint the normal C versions of these
>functions, because some of them don't _have_ normal C versions and if
>that were done dependencies would get messed up.

/*	$NetBSD: Lint_strchr.c,v 1.1.2.2 1997/11/08 22:01:01 veego Exp $	*/

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <string.h>

/*ARGSUSED*/
char *
strchr(src, c)
	const char *src;
	int c;
{
	return (0);
}