diff options
Diffstat (limited to 'xlib.h')
-rw-r--r-- | xlib.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,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 |