diff options
author | 1996-11-25 13:12:19 +0000 | |
---|---|---|
committer | 1996-11-25 13:12:19 +0000 | |
commit | af2beb8afa3665dcfbee2ab77ddd745deb3c28bd (patch) | |
tree | aa27ec5eff8aefb74263eec32f6de6222ea91644 | |
parent | htons et al. works on explicit 16- and 32-bit quantities and not the (diff) | |
download | wireguard-openbsd-af2beb8afa3665dcfbee2ab77ddd745deb3c28bd.tar.xz wireguard-openbsd-af2beb8afa3665dcfbee2ab77ddd745deb3c28bd.zip |
Need sys/types.h for htons et al.
-rw-r--r-- | usr.bin/window/ww.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/window/ww.h b/usr.bin/window/ww.h index ad71da8c81d..e4236bd947e 100644 --- a/usr.bin/window/ww.h +++ b/usr.bin/window/ww.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ww.h,v 1.4 1996/06/26 05:43:34 deraadt Exp $ */ +/* $OpenBSD: ww.h,v 1.5 1996/11/25 13:12:19 niklas Exp $ */ /* $NetBSD: ww.h,v 1.8 1996/02/08 21:48:51 mycroft Exp $ */ /* @@ -45,6 +45,7 @@ #include <termios.h> #endif #include <setjmp.h> +#include <sys/types.h> #include <machine/endian.h> #define NWW 30 /* maximum number of windows */ |