summaryrefslogtreecommitdiffstats
path: root/lib/libc/thread
diff options
context:
space:
mode:
authortodd <todd@openbsd.org>2001-08-30 17:47:57 +0000
committertodd <todd@openbsd.org>2001-08-30 17:47:57 +0000
commitcd74a012b845ae044cd9f1e0ae04b79ba469b17c (patch)
tree96905b28700700d58fd75b2a3cd649fd47e7510b /lib/libc/thread
parento kill register (diff)
downloadwireguard-openbsd-cd74a012b845ae044cd9f1e0ae04b79ba469b17c.tar.xz
wireguard-openbsd-cd74a012b845ae044cd9f1e0ae04b79ba469b17c.zip
Back out fgsch@'s tree breaking commits.
Test next time, ok?
Diffstat (limited to 'lib/libc/thread')
-rw-r--r--lib/libc/thread/thread_fd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/thread/thread_fd.c b/lib/libc/thread/thread_fd.c
index 2c98939b9d7..368800a69d7 100644
--- a/lib/libc/thread/thread_fd.c
+++ b/lib/libc/thread/thread_fd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: thread_fd.c,v 1.2 2001/08/30 07:38:27 fgsch Exp $ */
+/* $OpenBSD: thread_fd.c,v 1.3 2001/08/30 17:47:57 todd Exp $ */
#include <sys/time.h>
#include <pthread.h>
@@ -28,7 +28,7 @@ WEAK_NAME(_thread_fd_lock_debug)(fd, lock_type, timeout, fname, lineno)
int fd;
int lock_type;
struct timespec *timeout;
- char *fname;
+ const char *fname;
int lineno;
{
return 0;
@@ -45,7 +45,7 @@ void
WEAK_NAME(_thread_fd_unlock_debug)(fd, lock_type, fname, lineno)
int fd;
int lock_type;
- char *fname;
+ const char *fname;
int lineno;
{
}