xref: /linux/rust/helpers/slab.c (revision a0efa2f362a69e47b9d8b48f770ef3a0249a7911)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/slab.h>
4 
5 void * __must_check __realloc_size(2)
6 rust_helper_krealloc(const void *objp, size_t new_size, gfp_t flags)
7 {
8 	return krealloc(objp, new_size, flags);
9 }
10