summaryrefslogtreecommitdiff
path: root/sbin/fdisk
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1998-08-08 05:28:00 +0000
committerJason Downs <downsj@cvs.openbsd.org>1998-08-08 05:28:00 +0000
commit0752fc4e1a4ff9512cd200f3320caf6e83aec507 (patch)
tree452319b6cf39612f2f77a9a03d1d5d16e0d9e60e /sbin/fdisk
parent7d0bb0d7d975045e2f4481889cb26c5c8e00ee8c (diff)
Include signal.h so that it compiles.
Diffstat (limited to 'sbin/fdisk')
-rw-r--r--sbin/fdisk/cmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/fdisk/cmd.c b/sbin/fdisk/cmd.c
index 5a0b198e559..4888f85186c 100644
--- a/sbin/fdisk/cmd.c
+++ b/sbin/fdisk/cmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd.c,v 1.17 1998/08/07 21:49:18 millert Exp $ */
+/* $OpenBSD: cmd.c,v 1.18 1998/08/08 05:27:59 downsj Exp $ */
/*
* Copyright (c) 1997 Tobias Weingartner
@@ -35,6 +35,7 @@
#include <memory.h>
#include <stdlib.h>
#include <unistd.h>
+#include <signal.h>
#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include "disk.h"