diff options
author | 2014-06-30 00:25:17 +0000 | |
---|---|---|
committer | 2014-06-30 00:25:17 +0000 | |
commit | 82ee50fdc07513ac931e5e483c93898885cab61d (patch) | |
tree | 95deb4021c935fd57f278379e889907a17d7cdb0 /lib/libutil | |
parent | Use the freshly improved roff_getname() function (diff) | |
download | wireguard-openbsd-82ee50fdc07513ac931e5e483c93898885cab61d.tar.xz wireguard-openbsd-82ee50fdc07513ac931e5e483c93898885cab61d.zip |
limits.h rather than sys/param.h
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/imsg-buffer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libutil/imsg-buffer.c b/lib/libutil/imsg-buffer.c index 730959f8c67..65413c08e1d 100644 --- a/lib/libutil/imsg-buffer.c +++ b/lib/libutil/imsg-buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: imsg-buffer.c,v 1.3 2013/11/13 20:40:24 benno Exp $ */ +/* $OpenBSD: imsg-buffer.c,v 1.4 2014/06/30 00:25:17 deraadt Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -16,11 +16,12 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/queue.h> #include <sys/socket.h> #include <sys/uio.h> +#include <limits.h> #include <errno.h> #include <stdlib.h> #include <string.h> |