home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / PROCESS / PTRACE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  233 b   |  10 lines

  1. /* ptrace.c (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <sys/ptrace.h>
  5.  
  6. int ptrace (int request, int pid, int addr, int data)
  7. {
  8.   return (__ptrace (request, pid, addr, data));
  9. }
  10.