/* iat_send.c */

/* Send the standard input on specified pvc */

#include <stdio.h>
#include <fcntl.h>
#include <errno.h>

#include "ia_conf.h"
#include "ia_flip.h"
#include "ia_fred.h"
#include "ia_suni.h"
#include "ia_dbg.h"
#include "ia_cs.h"
#include "ia_comm.h"

char buf[3 * 1024];
int  iobuf[4];


main(
int argc,
char **argv)
{
   int  in;
   int  fd;
   int  len;
   int  vci;
   int  rc;
   int  blk;
   int  lc;
   int  psr = 1;

   fd = open("/dev/ia5515", O_RDWR);
   if (fd < 0)
   {
      printf("Fd = %d errno = %d \n", fd, errno);
      exit(1);
   }

   ioctl(fd, IA_DROPSIG, iobuf);

}

