Merge branch '#68-issue' of lirent/libcdsb into develop

This commit is contained in:
Gregory Lirent 2022-09-13 10:46:44 +03:00 committed by Gogs
commit 6dc339f0f2
1 changed files with 1 additions and 0 deletions

View File

@ -47,6 +47,7 @@ void libcdsb_stack_push_many(stack_t* x, size_t c, ...) {
n->prev = x->prev;
n->value = x->value;
x->prev = n;
x->value = va_arg(args, void*);
}
}