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

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

/* _ml_P_TTY_tcflush : int * int -> unit
 *
 * Discard data that is written but not sent, or received but not read.
 */
ml_val_t _ml_P_TTY_tcflush (ml_state_t *msp, ml_val_t arg)
{
    int         sts;

    sts = tcflush(REC_SELINT(arg, 0),REC_SELINT(arg, 1));

    CHK_RETURN_UNIT(msp, sts)

} /* end of _ml_P_TTY_tcflush */


syntax highlighted by Code2HTML, v. 0.9.1