/* * xmalloc.c -- allocate space or die * * For license terms, see the file COPYING in this directory. */ #include #include #include #if defined(STDC_HEADERS) #include #endif #include "fetchmail.h" #if defined(HAVE_VOIDPOINTER) #define XMALLOCTYPE void #else #define XMALLOCTYPE char #endif XMALLOCTYPE * xmalloc (int n) { XMALLOCTYPE *p; p = (XMALLOCTYPE *) malloc(n); if (p == (XMALLOCTYPE *) 0) { fputs("fetchmail: malloc failed\n",stderr); exit(PS_UNDEFINED); } return(p); } char *xstrdup(char *s) { char *p; p = (char *) xmalloc(strlen(s)+1); strcpy(p,s); return p; } /* xmalloc.c ends here */