Next: , Previous: , Up: C library functions   [Index]


realloc

realloc Function

#include <stdlib.h>

int *intptr;
Integer new size;

size = sizeof (int *);

intptr = (int *)realloc (NULL, size);