repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
segmentless smp fixes
[minix3.git]
/
lib
/
libc
/
string
/
Lint_ffs.c
blob
c3d28f6764d88c98c557c80ccc4e742648751179
1
/* $NetBSD: Lint_ffs.c,v 1.3 2009/08/05 16:08:00 joerg 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*/
11
int
12
ffs
(
int
value
)
13
{
14
return
(
0
);
15
}