summaryrefslogtreecommitdiffstats
path: root/include/xfuncs.h
blob: 4ce4e92928ff0b839772315c6bc9c32fc218cc3c (plain)
1
2
3
4
5
6
7
8
9
#ifndef __XFUNCS_H
#define __XFUNCS_H

void *xmalloc(size_t size);
void *xrealloc(void *ptr, size_t size);
void *xzalloc(size_t size);
char *xstrdup(const char *s);

#endif /* __XFUNCS_H */