diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-16 16:48:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-16 16:48:53 +0000 |
commit | 94fa34c725ef755eb123686f6cbdceb24411e401 (patch) | |
tree | adb4e0f8373b5c035f73e06a3c6d139aba24388c /lib/libfuse | |
parent | e188cfc0eef8e45aaec37715ff8af7ca7e0dafe3 (diff) |
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" |