15 lines
133 B
C
15 lines
133 B
C
long _Xpipe();
|
|
|
|
int
|
|
_pipe(f)
|
|
int f[2];
|
|
{
|
|
long x;
|
|
|
|
x = _Xpipe();
|
|
if (x == -1) return -1;
|
|
f[0] = x;
|
|
f[1] = x >> 16;
|
|
return 0;
|
|
}
|