diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-11-10 23:15:19 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-11-10 23:15:19 +0000 |
commit | b432de3838c62e1efc3ba78309ebf705203ef94b (patch) | |
tree | 343101be58ee31826869de81af303fb7c6c11d90 /lib | |
parent | ea6b38bf592d63e990d83512b72053ee674f2e73 (diff) |
missing proto for kqueue(); marc@ ok
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index 64d63c436ba..2422eaaf201 100644 --- a/lib/libpthread/uthread/pthread_private.h +++ b/lib/libpthread/uthread/pthread_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pthread_private.h,v 1.48 2003/08/01 19:50:23 millert Exp $ */ +/* $OpenBSD: pthread_private.h,v 1.49 2003/11/10 23:15:18 mickey Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -1313,6 +1313,7 @@ int _thread_sys_poll(struct pollfd *, unsigned, int); /* #include <sys/event.h> */ #ifdef _SYS_EVENT_H_ +int _thread_sys_kqueue(void); int _thread_sys_kevent(int, const struct kevent *, int, struct kevent *, int, const struct timespec *); #endif |