From dc9173248c452f0d766bd17cf0135910ece4a765 Mon Sep 17 00:00:00 2001 From: jshepher <> Date: Wed, 6 Oct 2004 14:44:23 +0000 Subject: [PATCH] Need to make error messages nonstatic so the asm code can find them. --- libnix/sources/stubs/misc/__cpucheck.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libnix/sources/stubs/misc/__cpucheck.c b/libnix/sources/stubs/misc/__cpucheck.c index 904fa69..7953bf0 100755 --- a/libnix/sources/stubs/misc/__cpucheck.c +++ b/libnix/sources/stubs/misc/__cpucheck.c @@ -4,11 +4,11 @@ #if defined(mc68020) || defined(__HAVE_68881__) #ifdef mc68020 -static const char errtext1[]="Need a 68020 or higher CPU"; +const char errtext1[]="Need a 68020 or higher CPU"; #endif #ifdef __HAVE_68881__ -static const char errtext2[]="Need some FPU to run"; +const char errtext2[]="Need some FPU to run"; #endif asm(