mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-23 00:20:52 -05:00
10 lines
203 B
C
10 lines
203 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
#include <linux/vmalloc.h>
|
||
|
|
||
|
void * __must_check __realloc_size(2)
|
||
|
rust_helper_vrealloc(const void *p, size_t size, gfp_t flags)
|
||
|
{
|
||
|
return vrealloc(p, size, flags);
|
||
|
}
|