signal.c 201 B

1234567891011
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #include <signal.h>
  6. int
  7. ocall_raise(int sig)
  8. {
  9. return raise(sig);
  10. }