* uip/sendsbr.c: replaced st_mtim with st_mtime, that's what
[mmh] / sbr / closefds.c
1
2 /*
3  * closefds.c -- close-up fd's
4  *
5  * $Id$
6  *
7  * This code is Copyright (c) 2002, by the authors of nmh.  See the
8  * COPYRIGHT file in the root directory of the nmh distribution for
9  * complete copyright information.
10  */
11
12 #include <h/mh.h>
13
14
15 void
16 closefds(int i)
17 {
18     int nbits = OPEN_MAX;
19
20     for (; i < nbits; i++)
21         close (i);
22 }