8 lines
187 B
OpenEdge ABL
8 lines
187 B
OpenEdge ABL
ifnd __STD_MEMORY_I
|
|
__STD_MEMORY_I equ 1
|
|
; Frees the memory block pointed to by a0
|
|
xref free
|
|
; Allocates a memory block of size d0 and returns the address in a0
|
|
xref malloc
|
|
endif
|