/* fcntl_sfl.c
 *
 * COPYRIGHT (c) 1995 by AT&T Bell Laboratories.
 */

#include "ml-unixdep.h"
#include <fcntl.h>
#include "ml-base.h"
#include "ml-values.h"
#include "ml-objects.h"
#include "ml-c.h"
#include "cfun-proto-list.h"

/* _ml_P_IO_fcntl_sfl : int * word -> unit
 *
 * Set file status flags
 */
ml_val_t _ml_P_IO_fcntl_sfl (ml_state_t *msp, ml_val_t arg)
{
    int             sts;
    int             fd0 = REC_SELINT(arg, 0);
    Word_t          flag = REC_SELWORD(arg, 1);

    sts = fcntl(fd0, F_SETFL, flag);

    CHK_RETURN_UNIT(msp,sts)

} /* end of _ml_P_IO_fcntl_sfl */


syntax highlighted by Code2HTML, v. 0.9.1