/* chown.c * * COPYRIGHT (c) 1995 by AT&T Bell Laboratories. */ #include "ml-unixdep.h" #include "ml-base.h" #include "ml-values.h" #include "ml-objects.h" #include "ml-c.h" #include "cfun-proto-list.h" #include #include /* _ml_P_FileSys_chown : (string * word * word) -> unit * name uid gid * * Change owner and group of file given its name. */ ml_val_t _ml_P_FileSys_chown (ml_state_t *msp, ml_val_t arg) { ml_val_t path = REC_SEL(arg, 0); uid_t uid = REC_SELWORD(arg, 1); gid_t gid = REC_SELWORD(arg, 2); int sts; sts = chown (STR_MLtoC(path), uid, gid); CHK_RETURN_UNIT(msp, sts) } /* end of _ml_P_FileSys_chown */