home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 23 / AACD 23.iso / AACD / Programming / tek / mem / mmufreehandle.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-05-12  |  236 b   |  22 lines

  1.  
  2. #include "tek/mem.h"
  3.  
  4. /* 
  5. **    TEKlib
  6. **    (C) 2001 TEK neoscientists
  7. **    all rights reserved.
  8. **
  9. **    TVOID TMMUFreeHandle(TAPTR h)
  10. **
  11. **    free handle.
  12. **
  13. */
  14.  
  15. TVOID TMMUFreeHandle(TAPTR h)
  16. {
  17.     if (h)
  18.     {
  19.         TMMUFree(((THNDL *) h)->mmu, h);
  20.     }
  21. }
  22.