X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fclosefds.c;h=8a4da4938229a96eef89e58b4f1ba33973dd4b58;hb=fb0594cb913cab5e14e2c295b79eb48cc675bbbf;hp=99543f5c109c75c5742bad3e32fe2649bac88d36;hpb=a485ed478abbd599d8c9aab48934e7a26733ecb1;p=mmh diff --git a/sbr/closefds.c b/sbr/closefds.c index 99543f5..8a4da49 100644 --- a/sbr/closefds.c +++ b/sbr/closefds.c @@ -1,10 +1,10 @@ /* - * closefds.c -- close-up fd's - * - * This code is Copyright (c) 2002, by the authors of nmh. See the - * COPYRIGHT file in the root directory of the nmh distribution for - * complete copyright information. - */ +** closefds.c -- close-up fd's +** +** This code is Copyright (c) 2002, by the authors of nmh. See the +** COPYRIGHT file in the root directory of the nmh distribution for +** complete copyright information. +*/ #include @@ -15,5 +15,5 @@ closefds(int i) int nbits = OPEN_MAX; for (; i < nbits; i++) - close (i); + close(i); }