From: solar Date: Sun, 5 Feb 2006 14:55:05 +0000 (+0000) Subject: Added realloc(). X-Git-Tag: v0.4~9 X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=225fae72283058e8bd0ab891cd481ebd8e93e96c Added realloc(). --- diff --git a/includes/stdlib.h b/includes/stdlib.h index 3fc15a3..4d6fc53 100644 --- a/includes/stdlib.h +++ b/includes/stdlib.h @@ -91,6 +91,7 @@ void srand( unsigned int seed ); /* Memory management functions */ void * malloc( size_t size ); +void * realloc( void * ptr, size_t size ); void free( void * ptr ); /* Communication with the environment */