summaryrefslogtreecommitdiff
path: root/rust/helpers/rbtree.c
blob: 6d404b84a9b53990cf7b301cb501f3b3332749e9 (plain)
1
2
3
4
5
6
7
8
9
// 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);
}