Added entry points for ANSI C

This commit is contained in:
ceriel
1990-01-22 11:01:47 +00:00
parent c78fcdb719
commit 2aa8df2d40
36 changed files with 287 additions and 14 deletions

14
mach/i386/libsys/_pipe.c Normal file
View File

@@ -0,0 +1,14 @@
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;
}