[INCLUDE/WINE]

* Leverage __builtin_ffs() to fix the ffs() related issues.

svn path=/trunk/; revision=59595
This commit is contained in:
Amine Khaldi 2013-07-30 16:06:38 +00:00
parent 9dcb3faa30
commit a747c72156

View file

@ -354,6 +354,8 @@ ffs(int mask)
if (_BitScanForward(&index, mask) == 0) return 0;
return index;
}
#else
#define ffs __builtin_ffs
#endif
#else /* NO_LIBWINE_PORT */