diff options
author | fgsch <> | 2001-08-30 07:38:27 +0000 |
---|---|---|
committer | fgsch <> | 2001-08-30 07:38:27 +0000 |
commit | 7e144664969eb0f02f21a9754d69309e7deccc7a (patch) | |
tree | 77b63ebd2f484ff44c0a87c19b3e44acfadaa89a | |
parent | 319f120d85d20dc0aa2d2bfab2c9da9b99eec64a (diff) | |
download | openbsd-7e144664969eb0f02f21a9754d69309e7deccc7a.tar.gz openbsd-7e144664969eb0f02f21a9754d69309e7deccc7a.tar.bz2 openbsd-7e144664969eb0f02f21a9754d69309e7deccc7a.zip |
fix some const warnings
-rw-r--r-- | src/lib/libc/include/thread_private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/include/thread_private.h b/src/lib/libc/include/thread_private.h index 29ff13d33c..b1f322d10e 100644 --- a/src/lib/libc/include/thread_private.h +++ b/src/lib/libc/include/thread_private.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: thread_private.h,v 1.7 2001/08/12 12:03:01 heko Exp $ */ | 1 | /* $OpenBSD: thread_private.h,v 1.8 2001/08/30 07:38:27 fgsch Exp $ */ |
2 | 2 | ||
3 | #ifndef _THREAD_PRIVATE_H_ | 3 | #ifndef _THREAD_PRIVATE_H_ |
4 | #define _THREAD_PRIVATE_H_ | 4 | #define _THREAD_PRIVATE_H_ |
@@ -128,8 +128,8 @@ void * _libc_private_storage(volatile struct _thread_private_key_struct *, | |||
128 | #endif | 128 | #endif |
129 | 129 | ||
130 | int _thread_fd_lock(int, int, struct timespec *); | 130 | int _thread_fd_lock(int, int, struct timespec *); |
131 | int _thread_fd_lock_debug(int, int, struct timespec *, const char *, int); | 131 | int _thread_fd_lock_debug(int, int, struct timespec *, char *, int); |
132 | void _thread_fd_unlock(int, int); | 132 | void _thread_fd_unlock(int, int); |
133 | void _thread_fd_unlock_debug(int, int, const char *, int); | 133 | void _thread_fd_unlock_debug(int, int, char *, int); |
134 | 134 | ||
135 | #endif /* _THREAD_PRIVATE_H_ */ | 135 | #endif /* _THREAD_PRIVATE_H_ */ |