Update 'foo.h'

This commit is contained in:
2021-11-10 10:27:17 +01:00
parent 1f26a4fcbb
commit 8c6c719733

2
foo.h
View File

@@ -1,3 +1,5 @@
#define bit_for_each64(pos, tmp, ul) \
for (tmp = ul, pos = ffs64(tmp); pos; tmp &= (tmp - 1), pos = ffs64(tmp))
/**/
#define bit_for_each64(pos, tmp, ul) \
for (tmp = ul, pos = ffs64(tmp); pos; tmp &= (tmp - 1), pos = ffs64(tmp))