snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit aabdbe1deef21bde913a63738fd5020b7ee35df0
parent 6317c9678de9e5a9d6100bcc520bcc15609a2f0b
Author: default <nobody@localhost>
Date:   Thu, 29 Sep 2022 12:41:36 +0200

Replace kill(getpid()) with raise().

Diffstat:
Mxs.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xs.h b/xs.h @@ -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);