summaryrefslogtreecommitdiffstats
path: root/channels.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2014-12-11 08:20:09 +0000
committerDamien Miller <djm@mindrot.org>2014-12-11 19:20:29 +1100
commit48b68ce19ca42fa488960028048dec023f7899bb (patch)
tree926ad0be9cfd33becdc5968a855d9c4b7e7c4792 /channels.c
parentd663bea30a294d440fef4398e5cd816317bd4518 (diff)
upstream commit
explicitly include sys/param.h in files that use the howmany() macro; from portable
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels.c b/channels.c
index 9dcd8128..6db92cba 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: channels.c,v 1.337 2014/10/08 22:15:06 djm Exp $ */
+/* $OpenBSD: channels.c,v 1.338 2014/12/11 08:20:09 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -42,6 +42,7 @@
#include "includes.h"
#include <sys/types.h>
+#include <sys/param.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/un.h>