freebsd11_network: Do not define ffs() for Clang.

cpufunc.h uses the __builtin version here.
This commit is contained in:
Augustin Cavalier 2018-08-20 21:06:55 -04:00
parent 4c00d515f1
commit 416efa19c6
1 changed files with 2 additions and 0 deletions

View File

@ -595,6 +595,7 @@ printf(const char *format, ...)
}
#ifndef __clang__
int
ffs(int value)
{
@ -608,6 +609,7 @@ ffs(int value)
return i;
}
#endif
int