diff options
| author | jdolecek <jdolecek@NetBSD.org> | 2000-11-13 21:32:15 +0000 |
|---|---|---|
| committer | jdolecek <jdolecek@NetBSD.org> | 2000-11-13 21:32:15 +0000 |
| commit | 78b866e95ae9a09b907434eb62d2fd757cb558d9 (patch) | |
| tree | e0bb92d8401a287193dd4032c1cd77728fb6f1de /sys/compat/linux/common/linux_exec_aout.c | |
| parent | 4a927f1e51c18db6a2fea3a816d80087e9c73930 (diff) | |
change the type of *syscallnames[] array to 'const char * const foo[]'
Diffstat (limited to 'sys/compat/linux/common/linux_exec_aout.c')
| -rw-r--r-- | sys/compat/linux/common/linux_exec_aout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/common/linux_exec_aout.c b/sys/compat/linux/common/linux_exec_aout.c index e314d7b6a58..64424997056 100644 --- a/sys/compat/linux/common/linux_exec_aout.c +++ b/sys/compat/linux/common/linux_exec_aout.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_exec_aout.c,v 1.40 2000/06/29 02:40:39 mrg Exp $ */ +/* $NetBSD: linux_exec_aout.c,v 1.41 2000/11/13 21:32:18 jdolecek Exp $ */ /*- * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc. @@ -75,7 +75,7 @@ static void *linux_aout_copyargs __P((struct exec_package *, extern char linux_sigcode[], linux_esigcode[]; extern struct sysent linux_sysent[]; -extern char *linux_syscallnames[]; +extern const char * const linux_syscallnames[]; int exec_linux_aout_prep_zmagic __P((struct proc *, struct exec_package *)); int exec_linux_aout_prep_nmagic __P((struct proc *, struct exec_package *)); |
