summaryrefslogtreecommitdiffstats
path: root/sbin/modload
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1997-06-29 20:38:38 +0000
committerbde <bde@FreeBSD.org>1997-06-29 20:38:38 +0000
commitcad5beb3c8ceaea9de9e76a4f43446d689b4535d (patch)
tree1378271ff89b608a58da04e267623fc08dd3ce57 /sbin/modload
parentc08c53d77406e9025bae15bb0da72f757f38073b (diff)
downloadFreeBSD-src-cad5beb3c8ceaea9de9e76a4f43446d689b4535d.zip
FreeBSD-src-cad5beb3c8ceaea9de9e76a4f43446d689b4535d.tar.gz
Prepare to remove the declaration of sys_siglist from <unistd.h>.
It should only be declared in <signal.h> if at all. Modload used to depend on getting it from <unistd.h> because it only included <sys/signal.h>.
Diffstat (limited to 'sbin/modload')
-rw-r--r--sbin/modload/modload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/modload/modload.c b/sbin/modload/modload.c
index 5828709..d85f3b1 100644
--- a/sbin/modload/modload.c
+++ b/sbin/modload/modload.c
@@ -29,11 +29,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: modload.c,v 1.17 1997/03/11 12:23:09 peter Exp $
+ * $Id: modload.c,v 1.18 1997/03/29 03:32:29 imp Exp $
*/
#include <stdio.h>
#include <stdlib.h>
+#include <signal.h>
#include <unistd.h>
#include <string.h>
#include <limits.h>
@@ -49,7 +50,6 @@
#include <sys/lkm.h>
#include <sys/file.h>
#include <sys/wait.h>
-#include <sys/signal.h>
#include "pathnames.h"
#define min(a, b) ((a) < (b) ? (a) : (b))
OpenPOWER on IntegriCloud