diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-03-10 10:00:48 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-03-10 10:00:48 +0000 |
commit | 509f671b203b49ca82ec7d5b890e86ab75f638e7 (patch) | |
tree | 71965e2c27dd66fc904e114b7725e2ebcc68e3d5 /lib/libpthread/include/pthread.h | |
parent | df6a35e6ef978469275c15f590e00a85f9442815 (diff) |
missing const (freebsd)
Diffstat (limited to 'lib/libpthread/include/pthread.h')
-rw-r--r-- | lib/libpthread/include/pthread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/include/pthread.h b/lib/libpthread/include/pthread.h index 0c935fabc97..1d997eb7e0b 100644 --- a/lib/libpthread/include/pthread.h +++ b/lib/libpthread/include/pthread.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: pthread.h,v 1.5 1999/01/18 00:00:31 d Exp $ + * $OpenBSD: pthread.h,v 1.6 1999/03/10 10:00:47 d Exp $ * */ #ifndef _PTHREAD_H_ @@ -208,7 +208,7 @@ void pthread_cleanup_push __P((void (*routine) (void *), void *routine_arg)); int pthread_condattr_destroy __P((pthread_condattr_t *attr)); int pthread_condattr_init __P((pthread_condattr_t *attr)); -int pthread_condattr_getpshared __P((pthread_condattr_t *attr, +int pthread_condattr_getpshared __P((const pthread_condattr_t *attr, int *pshared)); int pthread_condattr_setpshared __P((pthread_condattr_t *attr, int pshared)); |