completion.c 162 B

12345678
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/completion.h>
  3. __rust_helper void rust_helper_init_completion(struct completion *x)
  4. {
  5. init_completion(x);
  6. }