1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-16 00:04:59 +00:00

Add extern for globally defined currentdsp (pointer), add static to curdsp (storage).

This commit is contained in:
Nick Briggs 2022-12-09 18:29:11 -08:00
parent aa177fa40a
commit 2c83acee31

View File

@ -21,7 +21,8 @@
#include "dspifdefs.h"
#include "xinitdefs.h"
DspInterfaceRec curdsp;
static DspInterfaceRec curdsp = {0};
extern DspInterface currentdsp;
DspInterface currentdsp = &curdsp;
#ifdef XWINDOW