10 lines
103 B
C
10 lines
103 B
C
|
/* $Header$ */
|
||
|
|
||
|
int
|
||
|
sys_chmode(path, mode)
|
||
|
char *path;
|
||
|
int mode;
|
||
|
{
|
||
|
return chmod(path, mode) == 0;
|
||
|
}
|