mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
10 lines
217 B
C
10 lines
217 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
#include <linux/rbtree.h>
|
||
|
|
||
|
void rust_helper_rb_link_node(struct rb_node *node, struct rb_node *parent,
|
||
|
struct rb_node **rb_link)
|
||
|
{
|
||
|
rb_link_node(node, parent, rb_link);
|
||
|
}
|