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