From 09b582c23ae98d297c1fce9e7ccaebee4fcfcc0f Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Wed, 10 Nov 2021 10:28:45 +0100 Subject: [PATCH] test colors --- foo.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/foo.h b/foo.h index 08d964e..2ca7dea 100644 --- a/foo.h +++ b/foo.h @@ -1,2 +1,5 @@ +#define bit_for_each64_2(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)) +