diff options
author | David Leonard <d@cvs.openbsd.org> | 2000-01-06 15:07:07 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 2000-01-06 15:07:07 +0000 |
commit | 11bfcffb6a70997a62dbf28b32a55f7cc5d53725 (patch) | |
tree | 292a4c81b96032c4580ede80fe20b0c26db33bae | |
parent | d2f0bbb91ccc350e820e5b903d63f2994382433d (diff) |
rename thread_storage to unithread_storage to avoid object name conflict
-rw-r--r-- | lib/libc/thread/Makefile.inc | 4 | ||||
-rw-r--r-- | lib/libc/thread/unithread_storage.c (renamed from lib/libc/thread/thread_storage.c) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/thread/Makefile.inc b/lib/libc/thread/Makefile.inc index 08610fe77cd..8abec94f330 100644 --- a/lib/libc/thread/Makefile.inc +++ b/lib/libc/thread/Makefile.inc @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile.inc,v 1.1 2000/01/06 07:27:33 d Exp $ +# $OpenBSD: Makefile.inc,v 1.2 2000/01/06 15:07:06 d Exp $ .PATH: ${LIBCSRCDIR}/thread -SRCS+= thread_fd.c thread_storage.c +SRCS+= thread_fd.c unithread_storage.c diff --git a/lib/libc/thread/thread_storage.c b/lib/libc/thread/unithread_storage.c index cd810627a11..456082a8a2b 100644 --- a/lib/libc/thread/thread_storage.c +++ b/lib/libc/thread/unithread_storage.c @@ -1,4 +1,4 @@ -/* $OpenBSD: thread_storage.c,v 1.1 2000/01/06 07:27:33 d Exp $ */ +/* $OpenBSD: unithread_storage.c,v 1.1 2000/01/06 15:07:06 d Exp $ */ /* * */ |