Adopt the recent change to makesyscalls.sh (char * -> const char * const)

to make kdump compilable for arch without linux emulation.
This commit is contained in:
onoe 2000-11-15 08:34:03 +00:00
parent 96cb29b773
commit 1e584c9cec
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: linux_syscalls.c,v 1.35 1998/12/15 19:31:30 itohy Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.36 2000/11/15 08:34:03 onoe Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -45,5 +45,5 @@
#elif defined(__alpha__)
#include "../../sys/compat/linux/arch/alpha/linux_syscalls.c"
#else
char *linux_syscallnames[] = { 0 };
const char * const linux_syscallnames[] = { 0 };
#endif