summaryrefslogtreecommitdiff
path: root/lib/libc/include
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2000-09-08 06:11:37 +0000
committerBrad Smith <brad@cvs.openbsd.org>2000-09-08 06:11:37 +0000
commit4fcfdf369d9764ac539f821d350e58516c752065 (patch)
tree9c745010ea2588aea266ffcc402610075cfbc439 /lib/libc/include
parent196cc87073cb5a4bbcebe6cfed5bd1e8eb50bd8c (diff)
typo in comment, AILASES -> ALIASES
Diffstat (limited to 'lib/libc/include')
-rw-r--r--lib/libc/include/thread_private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/include/thread_private.h b/lib/libc/include/thread_private.h
index 32dc0103307..c4c4ffe6e4c 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.4 2000/01/06 08:57:29 d Exp $ */
+/* $OpenBSD: thread_private.h,v 1.5 2000/09/08 06:11:36 brad Exp $ */
#ifndef _THREAD_PRIVATE_H_
#define _THREAD_PRIVATE_H_
@@ -30,7 +30,7 @@ extern int __isthreaded;
#endif
#define WEAK_ALIAS(name) /* unavailable */
#define WEAK_PROTOTYPE(name) /* unnecessary */
-#else /* !_NO_WEAK_AILASES */
+#else /* !_NO_WEAK_ALIASES */
#define WEAK_NAME(name) __CONCAT(_weak_,name)
#define WEAK_ALIAS(name) __weak_alias(name, WEAK_NAME(name))
#ifdef __GNUC__