Files
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

10 lines
170 B
C

/* chown - change owner: like access() under CP/M */
#include <portab.h>
WORD chown(name,owner,group)
BYTE *name;
WORD owner;
WORD group;
{
return(access(name,0));
}