From 4c90d1d9e4092f9ee0106d316829144653a276ea Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Tue, 30 Dec 2025 02:45:11 +0100 Subject: Split monolithic dwm.h into modular headers and group them by it's functionalities The new plan of refactoring this project is to split entire monolithic codebase into separate, (kind of) independent modules. This will help with understanding the code by turning off modules and deciding which ones require some work. Signed-off-by: Filip Wandzio --- src/core/dwm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/dwm.c') diff --git a/src/core/dwm.c b/src/core/dwm.c index cd7fdb0..6d4cdcd 100644 --- a/src/core/dwm.c +++ b/src/core/dwm.c @@ -851,7 +851,7 @@ Atom getatomprop(Client *c, Atom prop) return atom; } -unsigned int getsystraywidth() +unsigned int getsystraywidth(void) { unsigned int w = 0; Client *i; @@ -1970,7 +1970,7 @@ void updatebarpos(Monitor *m) m->by = -bh; } -void updateclientlist() +void updateclientlist(void) { Client *c; Monitor *m; -- cgit v1.2.3