blob: 78b3839b50f065a7604dd80bc0fdbb5d8c50b430 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// SPDX-License-Identifier: GPL-2.0
#include <linux/export.h>
#include <linux/poll.h>
__rust_helper void rust_helper_poll_wait(struct file *filp,
wait_queue_head_t *wait_address,
poll_table *p)
{
poll_wait(filp, wait_address, p);
}
|