Linux-6.18.2/rust/helpers/bitmap.c

10 lines
243 B
C
Raw Normal View History

2025-12-23 20:05:50 +08:00
// SPDX-License-Identifier: GPL-2.0
#include <linux/bitmap.h>
void rust_helper_bitmap_copy_and_extend(unsigned long *to, const unsigned long *from,
unsigned int count, unsigned int size)
{
bitmap_copy_and_extend(to, from, count, size);
}