aboutsummaryrefslogtreecommitdiffstats
path: root/xlib.h
blob: e6f9e1667692a7c6f0fafe567121079b7e6835bf (plain)
1
2
3
4
5
6
7
8
#ifndef XLIB_H
#define XLIB_H

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

#endif