diff options
| author | bakkeby <[email protected]> | 2020-04-23 08:00:22 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-04-23 08:00:22 +0200 |
| commit | 2d8d5a09312d0238ef80420a953991f65ac34953 (patch) | |
| tree | fa4c60d870d34e10bab8a7df04da1f07a9968eb0 | |
| parent | a84f1b01d25c8071b32e1585e490f3856e1fa0c4 (diff) | |
| download | dwm-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |
