(C) 1998 AROS - The Amiga Research OS


NAME
#include <stdlib.h>

void free ()

SYNOPSIS
void * memory

FUNCTION
Return memory allocated with malloc() or a similar function to the system.

INPUTS
memory
The result of the previous call to malloc(), etc. or NULL.

RESULT
None.

EXAMPLE

SEE ALSO
malloc()

NOTES

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
01.01.1997 ldp
Changed clib to proto
12.12.1996 aros
ANSI expects these functions in stdlib.h
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
23.10.1996 aros
Use AROS_ALIGN() to align pointers
19.10.1996 aros
Moved all ANSI C function to here and wrote all neccessary header files. Now we have a real basis for our own C lib. Added the functions malloc(), free() and strcasecmp() Made all functions ANSI C compliant