diff options
author | 2003-12-31 22:15:28 +0000 | |
---|---|---|
committer | 2003-12-31 22:15:28 +0000 | |
commit | da297fa113feaa6da5e0a2c565b8063314b379b3 (patch) | |
tree | ffe1e78b533ce47b7d758da277b89df67d09de21 /lib/libpthread | |
parent | spacing. note this, cedric (diff) | |
download | wireguard-openbsd-da297fa113feaa6da5e0a2c565b8063314b379b3.tar.xz wireguard-openbsd-da297fa113feaa6da5e0a2c565b8063314b379b3.zip |
there is no pause() wrapper (thread_sys_pause) so remove the prototype
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index 2422eaaf201..00001a67fed 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.49 2003/11/10 23:15:18 mickey Exp $ */ +/* $OpenBSD: pthread_private.h,v 1.50 2003/12/31 22:15:28 brad Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -1253,7 +1253,6 @@ int _thread_sys_fsync(int); int _thread_sys_ftruncate(int, off_t); long _thread_sys_fpathconf(int, int); pid_t _thread_sys_getpid(void); -int _thread_sys_pause(void); int _thread_sys_pipe(int *); int _thread_sys_select(int, fd_set *, fd_set *, fd_set *, struct timeval *); off_t _thread_sys_lseek(int, off_t, int); |