Added entry points for ANSI C
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
long _pipe();
|
||||
long _xpipe();
|
||||
|
||||
int
|
||||
pipe(f)
|
||||
@@ -6,7 +6,7 @@ pipe(f)
|
||||
{
|
||||
long x;
|
||||
|
||||
x = _pipe();
|
||||
x = _xpipe();
|
||||
if (x == -1) return -1;
|
||||
f[0] = x;
|
||||
f[1] = x >> 16;
|
||||
|
||||
Reference in New Issue
Block a user