Added realloc().
authorsolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Sun, 5 Feb 2006 14:55:05 +0000 (14:55 +0000)
committersolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Sun, 5 Feb 2006 14:55:05 +0000 (14:55 +0000)
git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@131 546481bc-9713-0410-bf18-d3337bbf4a3e

includes/stdlib.h

index 3fc15a3d05685353c2d7730c481b3fa605f0fb7f..4d6fc53c91d1c4107ae27ec9be0083d7d7130488 100644 (file)
@@ -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 */