diff options
author | 1998-08-08 05:27:59 +0000 | |
---|---|---|
committer | 1998-08-08 05:27:59 +0000 | |
commit | c724dc42c143545b411723af68b585a637f2fc6b (patch) | |
tree | b9f8bd913e9d71ee3c797b0593319790cdbe13d0 | |
parent | add russian messages support (diff) | |
download | wireguard-openbsd-c724dc42c143545b411723af68b585a637f2fc6b.tar.xz wireguard-openbsd-c724dc42c143545b411723af68b585a637f2fc6b.zip |
Include signal.h so that it compiles.
-rw-r--r-- | sbin/fdisk/cmd.c | 3 |
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" |