9 lines
160 B
C
9 lines
160 B
C
#include "lib.h"
|
|
|
|
PUBLIC int chown(name, owner, grp)
|
|
char *name;
|
|
int owner, grp;
|
|
{
|
|
return callm1(FS, CHOWN, len(name), owner, grp, name, NIL_PTR, NIL_PTR);
|
|
}
|