Skip to content

Commit

Permalink
Fixed undefined variables
Browse files Browse the repository at this point in the history
  • Loading branch information
rajRishi22 committed Nov 25, 2024
1 parent ff043dd commit 7920458
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions librz/util/bitvector.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#define NELEM(N, ELEMPER) ((N + (ELEMPER)-1) / (ELEMPER))
#define BV_ELEM_SIZE 8U
#define RZ_BV_CHUNK_SIZE (sizeof(unsigned long) * CHAR_BIT)
#define SIZE_OF_UNSIGNED_LONG sizeof(unsigned long)

// optimization for reversing 8 bits which uses 32 bits
// https://graphics.stanford.edu/~seander/bithacks.html#ReverseByteWith32Bits
Expand Down

0 comments on commit 7920458

Please sign in to comment.