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

View File

@@ -1,9 +1,9 @@
long _wait();
long _xwait();
wait(p)
int *p;
{
long l = _wait();
long l = _xwait();
if (l == -1) return -1;
if (p) *p = (l >> 16);