summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2020-04-23 08:00:22 +0200
committerbakkeby <[email protected]>2020-04-23 08:00:22 +0200
commit2d8d5a09312d0238ef80420a953991f65ac34953 (patch)
treefa4c60d870d34e10bab8a7df04da1f07a9968eb0
parenta84f1b01d25c8071b32e1585e490f3856e1fa0c4 (diff)
downloaddwm-flexipatch-2d8d5a09312d0238ef80420a953991f65ac34953.tar.gz
dwm-flexipatch-2d8d5a09312d0238ef80420a953991f65ac34953.zip
getatomprop: Add forward declaration
No functional changes, but for every other function we have a forward declaration here. getatomprop should be no exception.
-rw-r--r--dwm.c1
1 files changed, 1 insertions, 0 deletions
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);