diff options
author | 2015-01-16 16:48:51 +0000 | |
---|---|---|
committer | 2015-01-16 16:48:51 +0000 | |
commit | aea60bee5e9bad0aab62f480f19c2fb34c068de4 (patch) | |
tree | 1e7befbc10e28796528939427d4fdbd94b60d9af /lib/libfuse | |
parent | More evil bootstrap code. #ifndef ALIGNBYTES #define ALIGNBYTES 3. (diff) | |
download | wireguard-openbsd-aea60bee5e9bad0aab62f480f19c2fb34c068de4.tar.xz wireguard-openbsd-aea60bee5e9bad0aab62f480f19c2fb34c068de4.zip |
Move to the <limits.h> universe.
review by millert, binary checking process with doug, concept with guenther
Diffstat (limited to 'lib/libfuse')
-rw-r--r-- | lib/libfuse/fuse_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libfuse/fuse_private.h b/lib/libfuse/fuse_private.h index cf6e7b6a6d5..10a0b5dc566 100644 --- a/lib/libfuse/fuse_private.h +++ b/lib/libfuse/fuse_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fuse_private.h,v 1.10 2014/04/28 13:08:34 syl Exp $ */ +/* $OpenBSD: fuse_private.h,v 1.11 2015/01/16 16:48:51 deraadt Exp $ */ /* * Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com> * @@ -18,12 +18,12 @@ #ifndef _FUSE_SUBR_H_ #define _FUSE_SUBR_H_ -#include <sys/param.h> #include <sys/dirent.h> #include <sys/mount.h> #include <sys/statvfs.h> #include <sys/vnode.h> #include <sys/fusebuf.h> +#include <limits.h> #include "fuse.h" |