summaryrefslogtreecommitdiff
path: root/lib/libc/string/Lint_index.c
blob: b7ea27c459084ae87b6f661b4c16bf8b0a41f63a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*	$NetBSD: Lint_index.c,v 1.1 1997/11/06 00:52:00 cgd Exp $	*/

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

#include <string.h>

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