closefds() doesn't seem relevant or large enough to be a function.
[mmh] / sbr / closefds.c
diff --git a/sbr/closefds.c b/sbr/closefds.c
deleted file mode 100644 (file)
index 8a4da49..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
-** 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 <h/mh.h>
-
-
-void
-closefds(int i)
-{
-       int nbits = OPEN_MAX;
-
-       for (; i < nbits; i++)
-               close(i);
-}