Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 20 lines 454 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#include <linux/rbtree.h> 4 5__rust_helper void rust_helper_rb_link_node(struct rb_node *node, 6 struct rb_node *parent, 7 struct rb_node **rb_link) 8{ 9 rb_link_node(node, parent, rb_link); 10} 11 12__rust_helper struct rb_node *rust_helper_rb_first(const struct rb_root *root) 13{ 14 return rb_first(root); 15} 16 17__rust_helper struct rb_node *rust_helper_rb_last(const struct rb_root *root) 18{ 19 return rb_last(root); 20}