diff options
author | 2015-01-20 01:48:13 +0000 | |
---|---|---|
committer | 2015-01-20 01:48:13 +0000 | |
commit | 8e831f22ec8c72c7f776271c73afb51b953316bd (patch) | |
tree | 786e5471c672115b25408222753f968e4d137012 | |
parent | DEFAULT_PRIORITY and DEFAULT_QLIMIT no longer used (diff) | |
download | wireguard-openbsd-8e831f22ec8c72c7f776271c73afb51b953316bd.tar.xz wireguard-openbsd-8e831f22ec8c72c7f776271c73afb51b953316bd.zip |
#include <sys/syslimits.h> to allow operation without requiring the noise
of <sys/param.h>
-rw-r--r-- | sys/dev/systrace.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/systrace.h b/sys/dev/systrace.h index d458eb72be5..a94d4806458 100644 --- a/sys/dev/systrace.h +++ b/sys/dev/systrace.h @@ -1,4 +1,4 @@ -/* $OpenBSD: systrace.h,v 1.24 2015/01/16 00:18:06 deraadt Exp $ */ +/* $OpenBSD: systrace.h,v 1.25 2015/01/20 01:48:13 deraadt Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -32,6 +32,7 @@ #ifndef _SYSTRACE_H_ #define _SYSTRACE_H_ +#include <sys/syslimits.h> #include <sys/ioccom.h> #include <sys/rwlock.h> |