tpi_close.c 273 B

1234567891011121314151617
  1. #include "tpi_daytime.h"
  2. void
  3. tpi_close(int fd)
  4. {
  5. struct T_ordrel_req ordrel_req;
  6. struct strbuf ctlbuf;
  7. ordrel_req.PRIM_type = T_ORDREL_REQ;
  8. ctlbuf.len = sizeof(struct T_ordrel_req);
  9. ctlbuf.buf = (char *) &ordrel_req;
  10. Putmsg(fd, &ctlbuf, NULL, 0);
  11. Close(fd);
  12. }