1extern void * xmalloc(
2    size_t n);
3extern void *xrealloc(
4    void *ptr,
5    size_t n);
6#define xfree free
7