From 906bc71f6745474c46746cae5d6a3605521e6f8f Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Wed, 10 Nov 2021 10:27:57 +0100 Subject: [PATCH] Update 'foo.h' --- foo.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/foo.h b/foo.h index 6280dba..08d964e 100644 --- a/foo.h +++ b/foo.h @@ -1,5 +1,2 @@ -#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) \ +#define bit_for_each64(pos, tmp, ul) \ for (tmp = ul, pos = ffs64(tmp); pos; tmp &= (tmp - 1), pos = ffs64(tmp))