12 lines
147 B
C
12 lines
147 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#define SIGNAL_NUM 32
|
|
|
|
#define SIGKILL 9
|
|
|
|
typedef void (*signal_handler_t)();
|
|
|
|
void run_signal(int32_t SIGNAL);
|