diff options
| author | Douglas Rumbaugh <douglas@thinkpad.my.domain> | 2022-10-06 17:21:46 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <douglas@thinkpad.my.domain> | 2022-10-06 17:21:46 -0400 |
| commit | 15c172c8c608645379bc798edd588dc6134325e1 (patch) | |
| tree | ea7a12ce907c6a2d5b9feac79f4ea63dad858cc6 /dwm.c | |
| parent | 7e6c8d06024a0ca79589be00db4eff5d0474db9d (diff) | |
| download | dwm-15c172c8c608645379bc798edd588dc6134325e1.tar.gz | |
Openbsd
Diffstat (limited to 'dwm.c')
| -rw-r--r-- | dwm.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -241,7 +241,9 @@ static void setup(void); static void seturgent(Client *c, int urg); static void showhide(Client *c); static void sigchld(int unused); +#ifndef __OpenBSD__ static void sigstatusbar(const Arg *arg); +#endif static void sighup(int unused); static void sigterm(int unused); static void spawn(const Arg *arg); @@ -1967,6 +1969,7 @@ sigterm(int unused) quit(&a); } +#ifndef __OpenBSD__ void sigstatusbar(const Arg *arg) { @@ -1980,6 +1983,7 @@ sigstatusbar(const Arg *arg) sigqueue(statuspid, SIGRTMIN+statussig, sv); } +#endif void spawn(const Arg *arg) |