commit 60319bd

wf  ·  2026-04-05 10:23:15 +0000 UTC
parent 18a13b2
Fix duplicate symbols linker error
2 files changed,  +4, -4
M howl.c
M ipc.c
M howl.c
+2, -2
 1@@ -44,8 +44,8 @@ extern void ipc_quit(char **);
 2 extern void ipc_config(char **);
 3 
 4 bool have_config = true;
 5-struct wm wm;
 6-struct config config;
 7+static struct wm wm;
 8+static struct config config;
 9 
10 static struct swc_manager mgr = {
11 	.new_screen = &new_screen,
M ipc.c
+2, -2
 1@@ -9,8 +9,8 @@
 2 #include "types.h"
 3 #include "ipc.h"
 4 
 5-struct wm wm;
 6-struct config config;
 7+static struct wm wm;
 8+static struct config config;
 9 
10 struct bind {
11 	uint32_t mod, key;