| cvs.gedasymbols.org/djgpp/doc/libc/libc_350.html | search | 
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
#include <stdlib.h> void free(void *ptr);  | 
Returns the allocated memory to the heap (see section malloc).  If the
ptr is NULL, free does nothing. 
None.
| ANSI/ISO C | C89; C99 | 
| POSIX | 1003.2-1992; 1003.1-2001 | 
char *q = (char *)malloc(20); free(q);  | 
| webmaster | delorie software privacy | 
| Copyright © 2004 | Updated Apr 2004 |