1/* $NetBSD: Lint_ffs.c,v 1.2 2000/06/14 06:49:07 cgd Exp $ */
2
3/*
4 * This file placed in the public domain.
5 * Chris Demetriou, November 5, 1997.
6 */
7
8#include <strings.h>
9
10/*ARGSUSED*/
11int
12ffs(int value)
13{
14	return(0);
15}
16