diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-04-22 00:40:18 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-04-22 00:40:18 +0000 |
commit | 94c512adfc6289940ea00c9566aca1f3711846ee (patch) | |
tree | f649266e4d6f7cb7c40428a693f567ade69d7f18 | |
parent | b22eaa546e86e6f4729fffa89b15522b669cebfd (diff) |
hide some pieces under _STANDALONE
-rw-r--r-- | sys/sys/time.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/time.h b/sys/sys/time.h index 0b9cdcc01cc..af7e3aa03c4 100644 --- a/sys/sys/time.h +++ b/sys/sys/time.h @@ -1,4 +1,4 @@ -/* $OpenBSD: time.h,v 1.4 1997/04/20 20:47:34 tholo Exp $ */ +/* $OpenBSD: time.h,v 1.5 1997/04/22 00:40:17 mickey Exp $ */ /* $NetBSD: time.h,v 1.18 1996/04/23 10:29:33 mycroft Exp $ */ /* @@ -162,7 +162,7 @@ struct clockinfo { #define TIMER_RELTIME 0x0 /* relative timer */ #define TIMER_ABSTIME 0x1 /* absolute timer */ -#ifdef _KERNEL +#if defined(_KERNEL) || defined(_STANDALONE) int itimerfix __P((struct timeval *tv)); int itimerdecr __P((struct itimerval *itp, int usec)); void microtime __P((struct timeval *tv)); |