System Memory Allocator
Provide basic memory allocation services.
-
Import memory allocation functions (malloc(), realloc(), free())
- Imported function
- Segment Source
- 34: #include "system.h"
-
Declare memory allocation functions (malloc(), realloc(), free())
- Function declaration
- Notes
- Alternate declaration for improved compatability.
- Segment Source
- 46: #ifndef STDC_HEADERS
47: char *malloc ();
48: char *realloc ();
49: void free ();
50: #endif
51: