#ifndef XMALLOC_H #define XMALLOC_H #include __attribute__((malloc)) void *xmalloc(size_t size); __attribute__((malloc)) void *xcalloc(size_t nmemb, size_t size); void *xrealloc(void *ptr, size_t size); __attribute__((malloc)) char *xstrdup(const char *s); #endif /* XMALLOC_H */