From 24c3c19e73ec174c0027f425e6002f67845ec24a Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Thu, 5 Apr 2007 20:40:47 +0000 Subject: [PATCH] Hide lbolt under _SOLARIS_C_SOURCE in preparation for ZFS import. I really couldn't avoid this with preprocessor magic. --- sys/sys/kernel.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/sys/kernel.h b/sys/sys/kernel.h index 1bee3fa8525b..92ceeb2d473a 100644 --- a/sys/sys/kernel.h +++ b/sys/sys/kernel.h @@ -67,7 +67,9 @@ extern int stathz; /* statistics clock's frequency */ extern int profhz; /* profiling clock's frequency */ extern int profprocs; /* number of process's profiling */ extern int ticks; +#ifndef _SOLARIS_C_SOURCE extern int lbolt; /* once a second sleep address */ +#endif #endif /* _KERNEL */