diff options
| author | jdolecek <jdolecek@NetBSD.org> | 2001-01-18 20:28:15 +0000 |
|---|---|---|
| committer | jdolecek <jdolecek@NetBSD.org> | 2001-01-18 20:28:15 +0000 |
| commit | 34c8ae80dab7dff7ee69b219c6bf49ca6e84e73f (patch) | |
| tree | 625354b477ae0db6bb663fa25ffc8be7214a49a0 /sys/compat/linux/common/linux_errno.c | |
| parent | e912e655e179f7c8dd5317da1faff48b8b02cf8e (diff) | |
constify
Diffstat (limited to 'sys/compat/linux/common/linux_errno.c')
| -rw-r--r-- | sys/compat/linux/common/linux_errno.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/common/linux_errno.c b/sys/compat/linux/common/linux_errno.c index 4452342cb3d..350fb72506f 100644 --- a/sys/compat/linux/common/linux_errno.c +++ b/sys/compat/linux/common/linux_errno.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_errno.c,v 1.9 1998/10/23 03:53:18 erh Exp $ */ +/* $NetBSD: linux_errno.c,v 1.10 2001/01/18 20:28:27 jdolecek Exp $ */ /*- * Copyright (c) 1995 The NetBSD Foundation, Inc. @@ -42,7 +42,7 @@ * This list is used to translate NetBSD errnos to linux errnos * when returning from a system call. (NetBSD system call->linux program) */ -int native_to_linux_errno[] = { +const int native_to_linux_errno[] = { 0, -LINUX_EPERM, -LINUX_ENOENT, |
