kernel: adjust formatting
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#include <mango/libc/string.h>
|
||||
#include <mango/bitmap.h>
|
||||
#include <mango/libc/string.h>
|
||||
|
||||
void bitmap_zero(unsigned long *map, unsigned long nbits)
|
||||
{
|
||||
@@ -38,7 +38,6 @@ bool bitmap_check(unsigned long *map, unsigned long bit)
|
||||
unsigned long mask = 1ul << offset;
|
||||
|
||||
return (map[index] & mask) != 0 ? true : false;
|
||||
|
||||
}
|
||||
|
||||
unsigned int bitmap_count_set(unsigned long *map, unsigned long nbits)
|
||||
|
||||
Reference in New Issue
Block a user