summaryrefslogtreecommitdiff
path: root/emu/port/fns.h
diff options
context:
space:
mode:
authorKonstantin Kirik (snegovick) <snegovick@uprojects.org>2025-12-04 18:36:51 +0300
committerKonstantin Kirik (snegovick) <snegovick@uprojects.org>2025-12-04 18:36:51 +0300
commit81aba5a90629df36627242431f07c8e6324f48e3 (patch)
treeb839d2559b01ac0b4e583f6234ebdb0e53713661 /emu/port/fns.h
parentaf3987f8d4ec692e102f5a376657651f2d698616 (diff)
Fix issue with multiple definitions of coherence, disable coherence call because its implementation is empty anyway. I failed to identify how to properly initialize coherence to leave call to it in place.
Diffstat (limited to 'emu/port/fns.h')
-rw-r--r--emu/port/fns.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/emu/port/fns.h b/emu/port/fns.h
index 6a0809c0..36d341b7 100644
--- a/emu/port/fns.h
+++ b/emu/port/fns.h
@@ -20,7 +20,7 @@ Dir* chandirstat(Chan*);
void cinit(void);
char* clipread(void);
int clipwrite(char*);
-void (*coherence)(void);
+extern void (*coherence)(void);
void copen(Chan*);
void cmderror(Cmdbuf*, char*);
Block* concatblock(Block*);