diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-20 01:48:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-20 01:48:14 +0000 |
commit | 25ce9a50811f15a7fa1166f22cbb1247d4181b56 (patch) | |
tree | 15d187e6bcb5e0b5500da4448b933e965d79b8cb /sys/dev | |
parent | c25b00b40751a9a65abc13db84e67cda01b7215a (diff) |
#include <sys/syslimits.h> to allow operation without requiring the noise
of <sys/param.h>
Diffstat (limited to 'sys/dev')
-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> |