mirror of
https://github.com/zeldaret/st
synced 2026-05-27 08:08:20 -04:00
c98c03de39
* match wstring.c * match math_api.c, mbstring.c, mem.c and mem_funcs.c * more progress * build issues * fix non-matching issues * reorganise files * match fdlibm (+ libc progress) * fix jp build * solved some non-matchings and progress * removed types.h usage in libc * match data and add missing delinks for jp
19 lines
198 B
C
19 lines
198 B
C
#ifndef _C_SIGNAL_H
|
|
#define _C_SIGNAL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void exit(int);
|
|
|
|
typedef void (*sig_func)(int sig);
|
|
|
|
int raise(int sig);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|