brintos

brintos / linux-shallow public Read only

0
0
Text · 214 B · f043e08 Raw
10 lines · c
1// SPDX-License-Identifier: GPL-2.02 3#include <linux/slab.h>4 5void * __must_check __realloc_size(2)6rust_helper_krealloc(const void *objp, size_t new_size, gfp_t flags)7{8	return krealloc(objp, new_size, flags);9}10