summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortholo <tholo@openbsd.org>1997-04-25 03:55:20 +0000
committertholo <tholo@openbsd.org>1997-04-25 03:55:20 +0000
commitac8a91a5b1e13c383a9051e97998e0a1248118fe (patch)
tree25f9a45d70f6f8eae85015173670721b184b7e14
parentA couple of performance improvements from Denny Gentry <denny1@home.com> (diff)
downloadwireguard-openbsd-ac8a91a5b1e13c383a9051e97998e0a1248118fe.tar.xz
wireguard-openbsd-ac8a91a5b1e13c383a9051e97998e0a1248118fe.zip
Prototype nanosleep(2)
-rw-r--r--sys/sys/time.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/time.h b/sys/sys/time.h
index af7e3aa03c4..bf571066ba2 100644
--- a/sys/sys/time.h
+++ b/sys/sys/time.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: time.h,v 1.5 1997/04/22 00:40:17 mickey Exp $ */
+/* $OpenBSD: time.h,v 1.6 1997/04/25 03:55:20 tholo Exp $ */
/* $NetBSD: time.h,v 1.18 1996/04/23 10:29:33 mycroft Exp $ */
/*
@@ -177,6 +177,7 @@ int adjtime __P((const struct timeval *, struct timeval *));
int futimes __P((int, const struct timeval *));
int getitimer __P((int, struct itimerval *));
int gettimeofday __P((struct timeval *, struct timezone *));
+int nanosleep __P((struct timespec *, struct timespec *));
int setitimer __P((int, const struct itimerval *, struct itimerval *));
int settimeofday __P((const struct timeval *, const struct timezone *));
int utimes __P((const char *, const struct timeval *));