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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-05-09
|
264 b
|
19 lines
#include <proto/exec.h>
#include <stdio.h>
/* obtain our own unique process number */
int getpid(void)
{
return((int)FindTask(NULL));
}
/* set buffering of a stream to 'line buffered' */
void setlinebuf(FILE *stream)
{
stream->_flag|=_IOLBF;
}