Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-kill.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_KILL_H__
7#define __MOCK_KILL_H__
8
9#include <signal.h>
10
16int __wrap_kill(pid_t pid, int sig); // NOLINT(readability-identifier-naming)
17 // Rationale: Naming scheme fixed due to linker wrapping.
18
19#endif /* __MOCK_KILL_H__ */
int __wrap_kill(pid_t pid, int sig)
Definition mock-kill.c:13