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 / libc / closeall.c < prev    next >
C/C++ Source or Header  |  1989-06-27  |  141b  |  12 lines

  1. #include <sys/param.h>
  2.  
  3. void
  4. closeall(leavestd)
  5. int leavestd;
  6. {
  7.     register int i;
  8.  
  9.     for (i = (leavestd? 3: 0); i < NOFILE; i++)
  10.         close(i);
  11. }
  12.