initial version

This commit is contained in:
ceriel
1989-10-10 11:40:55 +00:00
parent 010bade227
commit 48252cc673
74 changed files with 719 additions and 0 deletions

11
mach/i386/libsys/wait.c Normal file
View File

@@ -0,0 +1,11 @@
long _wait();
wait(p)
int *p;
{
long l = _wait();
if (l == -1) return -1;
if (p) *p = (l >> 16);
return l & 0xffff;
}