home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / communication / bbs / termv4.6 / extras / source / term-source.lha / MemStubs.a < prev    next >
Encoding:
Text File  |  1996-03-18  |  615 b   |  35 lines

  1. **
  2. **    MemStubs.a
  3. **
  4. **    Stubs for memory management routines
  5. **
  6. **    Copyright © 1990-1996 by Olaf `Olsen' Barthel
  7. **        All Rights Reserved
  8. **
  9.  
  10.     section    text,code
  11.  
  12. *----------------------------------------------------------------------------*
  13.  
  14.     xref    FreeVecPooledLocal
  15.     xdef    FreeVecPooled
  16.  
  17. FreeVecPooled:
  18.  
  19.     move.l    (sp),a1
  20.     bra    FreeVecPooledLocal
  21.  
  22. *----------------------------------------------------------------------------*
  23.  
  24.     xref    AllocVecPooledLocal
  25.     xdef    AllocVecPooled
  26.  
  27. AllocVecPooled:
  28.  
  29.     move.l    (sp),a0
  30.     bra    AllocVecPooledLocal
  31.  
  32. *----------------------------------------------------------------------------*
  33.  
  34.     end
  35.