summaryrefslogtreecommitdiff
path: root/lib/libc/string/Lint_ffs.c
blob: c3d28f6764d88c98c557c80ccc4e742648751179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* $NetBSD: Lint_ffs.c,v 1.3 2009/08/05 16:08:00 joerg Exp $ */

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

#include <strings.h>

/*ARGSUSED*/
int
ffs(int value)
{
	return(0);
}