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

  1.  
  2. #include "tek/exec.h"
  3. #include "tek/kn/exec.h"
  4.  
  5. /* 
  6. **    TEKlib
  7. **    (C) 2001 TEK neoscientists
  8. **    all rights reserved.
  9. **
  10. **    TAPTR task = TTaskFindSelf(TVOID)
  11. **
  12. **    find self - get task context
  13. **
  14. */
  15.  
  16. TAPTR TTaskFindSelf(TVOID)
  17. {
  18.     return kn_findself();
  19. }
  20.