mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
10 lines
214 B
C
10 lines
214 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
#include <linux/slab.h>
|
||
|
|
||
|
void * __must_check __realloc_size(2)
|
||
|
rust_helper_krealloc(const void *objp, size_t new_size, gfp_t flags)
|
||
|
{
|
||
|
return krealloc(objp, new_size, flags);
|
||
|
}
|