| www.delorie.com/djgpp/doc/libc-2.01/libc_688.html | search |
#include <stdlib.h> void *xrealloc(void *ptr, size_t size);
This function is just like realloc (see section realloc), except that
if there is no more memory, it prints an error message and exits. It
can also properly handle ptr being NULL.
A pointer to a possibly new block.
char *buf; buf = (char *)xrealloc(buf, new_size);
Go to the first, previous, next, last section, table of contents.
| prev next webmaster | delorie software privacy |
| Copyright © 1997 | Updated Apr 1997 |