From 526e559c8dde35839920616f463d09ce61ac4b30 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Fri, 6 Jan 2023 13:00:31 -0800 Subject: [PATCH] Declare module local variables static in loopsops.c --- src/loopsops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/loopsops.c b/src/loopsops.c index b7c83fb..6b7c765 100644 --- a/src/loopsops.c +++ b/src/loopsops.c @@ -116,15 +116,15 @@ struct LCInstance { /* instance datatype */ LispPTR class, iNames, iDescrs, instMiscField; }; -struct LCMethodCacheEntry { +static struct LCMethodCacheEntry { LispPTR class, selector, method_fn, junk; } * LCMethodCache; -struct LCIVCacheEntry { +static struct LCIVCacheEntry { LispPTR iNames, iv, index, junk; } * LCIVCache; -LispPTR atom_instance = 0, /* various atom indices */ +static LispPTR atom_instance = 0, /* various atom indices */ atom_class, atom_annotatedValue, atom_FetchMethodOrHelp_LCUFN, atom_FetchMethod_LCUFN, atom_FindVarIndex_LCUFN, atom_GetIVValue_LCUFN, atom_PutIVValue_LCUFN;