This commit is contained in:
2025-12-10 07:58:23 +01:00
parent 2c4646a0ee
commit 260dabfbf0
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ static const allocator_vtbl_t forever_vtbl = {
.reset = forever_no_op,
};
allocator_t forever_allocator() {
allocator_t forever_allocator(void) {
return (allocator_t) {
.this=NULL,
.vtbl=&forever_vtbl,