1
0
forked from 131/lab5_ivec

add missing files

This commit is contained in:
dzruyk
2022-04-16 03:26:25 +03:00
parent d649028109
commit 18b2aad88f
3 changed files with 72 additions and 0 deletions

9
util.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
void *xmalloc(size_t sz);
void* xrealloc(void *ptr, size_t size);
void xfree(void *ptr);
void xerror(int rc, char *fmt, ...);