xref: /linux/rust/helpers/rbtree.c (revision f2cab5a0e8c3a4a49dc5b0f7088bcc12d65e71e4)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/rbtree.h>
4 
5 void rust_helper_rb_link_node(struct rb_node *node, struct rb_node *parent,
6 			      struct rb_node **rb_link)
7 {
8 	rb_link_node(node, parent, rb_link);
9 }
10