.TH "IXP_EMALLOC" 3 "2012 Dec" "libixp Manual" .SH NAME .P ixp_emalloc, ixp_emallocz, ixp_erealloc, ixp_estrdup .SH SYNOPSIS .nf #include void *ixp_emalloc(uint size); void *ixp_emallocz(uint size); void *ixp_erealloc(void *ptr, uint size); char *ixp_estrdup(const char *str); .fi .SH DESCRIPTION .P These functions act like their stdlib counterparts, but print an error message and exit the program if allocation fails. ixp_emallocz acts like ixp_emalloc but additionally zeros the result of the allocation. .\" man code generated by txt2tags 2.6 (http://txt2tags.org) .\" cmdline: txt2tags -o- ixp_emalloc.man3