wait.c 176 B

123456789
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/export.h>
  3. #include <linux/wait.h>
  4. void rust_helper_init_wait(struct wait_queue_entry *wq_entry)
  5. {
  6. init_wait(wq_entry);
  7. }