summaryrefslogtreecommitdiffstats
path: root/lib/libc/include
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2000-09-08 06:11:36 +0000
committerbrad <brad@openbsd.org>2000-09-08 06:11:36 +0000
commitc24e926c728f4f4d46e21f18a9878ef96754b3de (patch)
tree0e2e85a54baefa3bb5219639aa6eb5afe826ba3f /lib/libc/include
parentModify ata timing parameters, gives signficant boost in disk speed. (diff)
downloadwireguard-openbsd-c24e926c728f4f4d46e21f18a9878ef96754b3de.tar.xz
wireguard-openbsd-c24e926c728f4f4d46e21f18a9878ef96754b3de.zip
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__