Initial revision

This commit is contained in:
ceriel
1987-02-20 14:36:01 +00:00
parent 429502815f
commit 8612a70ea3
167 changed files with 2574 additions and 0 deletions

8
mach/sun3/libsys/plock.c Normal file
View File

@@ -0,0 +1,8 @@
#include <errno.h>
plock(op)
{
extern int errno;
errno = EPERM;
return -1;
}