bitmap.c 257 B

12345678910
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/bitmap.h>
  3. __rust_helper
  4. void rust_helper_bitmap_copy_and_extend(unsigned long *to, const unsigned long *from,
  5. unsigned int count, unsigned int size)
  6. {
  7. bitmap_copy_and_extend(to, from, count, size);
  8. }