From 2d8d5a09312d0238ef80420a953991f65ac34953 Mon Sep 17 00:00:00 2001 From: bakkeby Date: Thu, 23 Apr 2020 08:00:22 +0200 Subject: [PATCH] getatomprop: Add forward declaration No functional changes, but for every other function we have a forward declaration here. getatomprop should be no exception. --- dwm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dwm.c b/dwm.c index 56e28af..13dbb70 100644 --- a/dwm.c +++ b/dwm.c @@ -352,6 +352,7 @@ static void focusmon(const Arg *arg); #if !STACKER_PATCH static void focusstack(const Arg *arg); #endif // STACKER_PATCH +static Atom getatomprop(Client *c, Atom prop); static int getrootptr(int *x, int *y); static long getstate(Window w); static int gettextprop(Window w, Atom atom, char *text, unsigned int size);