10 lines
184 B
C
10 lines
184 B
C
|
#include <lib.h>
|
||
|
#define chown _chown
|
||
|
|
||
|
PUBLIC int chown(name, owner, grp)
|
||
|
char *name;
|
||
|
int owner, grp;
|
||
|
{
|
||
|
return(_callm1(FS, CHOWN, _len(name), owner, grp, name, NIL_PTR, NIL_PTR));
|
||
|
}
|