From 3c272d5b9cc39781e8a4ba1558d62dc68cc8bab2 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 18 Aug 1993 22:14:34 +0000 Subject: [PATCH] Don't reference the various random symbols inside a static data structure, because the SunOS compiler is ``smart'' enough to remove it because it isn't referenced. --- lisp/undefineds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/undefineds.c b/lisp/undefineds.c index 577067022..0cf5f9f50 100644 --- a/lisp/undefineds.c +++ b/lisp/undefineds.c @@ -1,5 +1,5 @@ /* Routines that must be linked into the core for lisp to work. */ -/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/undefineds.c,v 1.1 1992/09/08 20:19:03 wlott Exp $ */ +/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/undefineds.c,v 1.2 1993/08/18 22:14:34 wlott Exp $ */ #ifdef sun #ifndef MACH @@ -13,6 +13,6 @@ extern func #include "undefineds.h" ; -static func *foo[] = { +func *reference_random_symbols[] = { #include "undefineds.h" }; -- GitLab