Updated README

This commit is contained in:
Aleksandr Lebedev 2026-02-20 01:40:30 +01:00
parent 2a908210a1
commit 3e1f2a2340
2 changed files with 5 additions and 2 deletions

2
main.c
View file

@ -25,7 +25,7 @@ void sigint_handler(int signo)
siglongjmp(restart_jmp_buf, restart_value);
}
/*Checked calloc: if allocation fails -> exists*/
/*Checked calloc: if allocation fails -> exits*/
void* ccalloc(size_t size, size_t n)
{
void* ret = calloc(size, n);