From bb1b5410145f099d00108e7f70625a978b944799 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Thu, 5 Jan 2023 19:57:00 -0800 Subject: [PATCH] Add extern declarations for globals defined in xlspwin.c --- src/xlspwin.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/xlspwin.c b/src/xlspwin.c index 4be6f63..e1ac015 100644 --- a/src/xlspwin.c +++ b/src/xlspwin.c @@ -47,14 +47,19 @@ extern char **save_argv; extern DspInterface currentdsp; - -Cursor WaitCursor, DefaultCursor, VertScrollCursor, VertThumbCursor, ScrollUpCursor, - ScrollDownCursor, HorizScrollCursor, HorizThumbCursor, ScrollLeftCursor, ScrollRightCursor; - extern int LispWindowRequestedX, LispWindowRequestedY; extern unsigned LispWindowRequestedWidth, LispWindowRequestedHeight; extern int noscroll; +/* + * globals defined in this module + */ +extern Cursor WaitCursor, DefaultCursor, VertScrollCursor, VertThumbCursor, ScrollUpCursor, + ScrollDownCursor, HorizScrollCursor, HorizThumbCursor, ScrollLeftCursor, ScrollRightCursor; +Cursor WaitCursor, DefaultCursor, VertScrollCursor, VertThumbCursor, ScrollUpCursor, + ScrollDownCursor, HorizScrollCursor, HorizThumbCursor, ScrollLeftCursor, ScrollRightCursor; + + /************************************************************************/ /* */ /* */