diff options
author | 2001-08-30 07:38:27 +0000 | |
---|---|---|
committer | 2001-08-30 07:38:27 +0000 | |
commit | 271c380dbf1e6c47dce0416526a16d6fa2b2e491 (patch) | |
tree | 5c73760d06d9f4835f41767cf9a7b18dfb1a6030 /lib/libc/include | |
parent | additional documentation for GatewayPorts; ok markus@ (diff) | |
download | wireguard-openbsd-271c380dbf1e6c47dce0416526a16d6fa2b2e491.tar.xz wireguard-openbsd-271c380dbf1e6c47dce0416526a16d6fa2b2e491.zip |
fix some const warnings
Diffstat (limited to 'lib/libc/include')
-rw-r--r-- | lib/libc/include/thread_private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/include/thread_private.h b/lib/libc/include/thread_private.h index 29ff13d33c6..b1f322d10e4 100644 --- a/lib/libc/include/thread_private.h +++ b/lib/libc/include/thread_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: thread_private.h,v 1.7 2001/08/12 12:03:01 heko Exp $ */ +/* $OpenBSD: thread_private.h,v 1.8 2001/08/30 07:38:27 fgsch Exp $ */ #ifndef _THREAD_PRIVATE_H_ #define _THREAD_PRIVATE_H_ @@ -128,8 +128,8 @@ void * _libc_private_storage(volatile struct _thread_private_key_struct *, #endif int _thread_fd_lock(int, int, struct timespec *); -int _thread_fd_lock_debug(int, int, struct timespec *, const char *, int); +int _thread_fd_lock_debug(int, int, struct timespec *, char *, int); void _thread_fd_unlock(int, int); -void _thread_fd_unlock_debug(int, int, const char *, int); +void _thread_fd_unlock_debug(int, int, char *, int); #endif /* _THREAD_PRIVATE_H_ */ |