diff options
author | default <nobody@localhost> | 2022-09-29 12:41:36 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-09-29 12:41:36 +0200 |
commit | aabdbe1deef21bde913a63738fd5020b7ee35df0 (patch) | |
tree | e50037eec9d06110195299042302cbe8c07ca199 /xs.h | |
parent | 6317c9678de9e5a9d6100bcc520bcc15609a2f0b (diff) |
Replace kill(getpid()) with raise().
Diffstat (limited to 'xs.h')
-rw-r--r-- | xs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ typedef char d_char; #define _xs_blk_size(sz) ((((sz) + _XS_BLK_SIZE) / _XS_BLK_SIZE) * _XS_BLK_SIZE) void _xs_destroy(char **var); -#define xs_debug() kill(getpid(), 5) +#define xs_debug() raise(5) xstype xs_type(const char *data); int xs_size(const char *data); int xs_is_null(char *data); |