9 lines
81 B
C
9 lines
81 B
C
#include <errno.h>
|
|
plock(op)
|
|
{
|
|
extern int errno;
|
|
|
|
errno = EPERM;
|
|
return -1;
|
|
}
|