home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff319.lzh / CNewsSrc / cnews.orig.lzh / libv8 / clsexec.c next >
C/C++ Source or Header  |  1989-06-27  |  170b  |  15 lines

  1. /*
  2.  * set close on exec (on Unix)
  3.  */
  4.  
  5. #include <stdio.h>
  6. #include <sgtty.h>
  7.  
  8. void
  9. fclsexec(fp)
  10. FILE *fp;
  11. {
  12.     (void) ioctl(fileno(fp), FIOCLEX, (struct sgttyb *)NULL);
  13. }
  14.  
  15.