forked from 131/lab5_ivec
10 lines
143 B
C
10 lines
143 B
C
#pragma once
|
|
|
|
void *xmalloc(size_t sz);
|
|
|
|
void* xrealloc(void *ptr, size_t size);
|
|
|
|
void xfree(void *ptr);
|
|
|
|
void xerror(int rc, char *fmt, ...);
|