mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00: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);
|
||
|
}
|