home *** CD-ROM | disk | FTP | other *** search
RISC OS BBC BASIC V Source | 1994-09-10 | 481 b | 22 lines |
- UsefulBits
- Author: George Taylor, george@tardis.ed.ac.uk
- _UsefulBitsInit
- C_malloc%=
- _CCall(168)
- C_free%=
- _CCall(167)
- C_printf%=
- _CCall(191)
- _Malloc(size%)
- space%
- basicC_CCall,C_malloc%,space%,size%
- =space%
- _Zmalloc(size%)
- space%
- basicC_CCall,C_malloc%,space%,size%
- space%=0
- 1,"Out of memory, FN_Zmalloc failed"
- =space%
- _Free(space%)
- basicC_CCall,C_free%,a%,space%
-