home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / comm / tcp / traceroute / src / traceroute_ixsupport.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-09  |  264 b   |  19 lines

  1. #include <proto/exec.h>
  2. #include <stdio.h>
  3.  
  4.  
  5. /* obtain our own unique process number */
  6.  
  7. int getpid(void)
  8. {
  9.         return((int)FindTask(NULL));
  10. }
  11.  
  12.  
  13. /* set buffering of a stream to 'line buffered' */
  14.  
  15. void setlinebuf(FILE *stream)
  16. {
  17.       stream->_flag|=_IOLBF;
  18. }
  19.