summaryrefslogtreecommitdiff
path: root/sys/compat/linux
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2003-01-06 20:30:28 +0000
committerwiz <wiz@NetBSD.org>2003-01-06 20:30:28 +0000
commit1035faff1d69d2b2b87d1edb2ef3c0b0be73af7a (patch)
tree4bb2a96f03fc8e94de278ea70f7bc8d246d7e9b5 /sys/compat/linux
parenteca381fce47f9f7c9e56dd33f06c3deea8ea319a (diff)
writable, not writeable.
Diffstat (limited to 'sys/compat/linux')
-rw-r--r--sys/compat/linux/common/linux_uselib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/common/linux_uselib.c b/sys/compat/linux/common/linux_uselib.c
index 444ef394220..bbd66666ad4 100644
--- a/sys/compat/linux/common/linux_uselib.c
+++ b/sys/compat/linux/common/linux_uselib.c
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_uselib.c,v 1.7 2002/10/05 22:34:04 chs Exp $ */
+/* $NetBSD: linux_uselib.c,v 1.8 2003/01/06 20:30:36 wiz Exp $ */
/*-
* Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_uselib.c,v 1.7 2002/10/05 22:34:04 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_uselib.c,v 1.8 2003/01/06 20:30:36 wiz Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -77,7 +77,7 @@ __KERNEL_RCSID(0, "$NetBSD: linux_uselib.c,v 1.7 2002/10/05 22:34:04 chs Exp $")
* a_entry. Read in the header, set up some VM commands and run them.
*
* Yes, both text and data are mapped at once, so we're left with
- * writeable text for the shared libs. The Linux crt0 seemed to break
+ * writable text for the shared libs. The Linux crt0 seemed to break
* sometimes when data was mapped separately. It munmapped a uselib()
* of ld.so by hand, which failed with shared text and data for ld.so
* Yuck.