aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/wm/arg.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/cmd/wm/arg.c')
-rw-r--r--sys/cmd/wm/arg.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/sys/cmd/wm/arg.c b/sys/cmd/wm/arg.c
index bf58534..e69de29 100644
--- a/sys/cmd/wm/arg.c
+++ b/sys/cmd/wm/arg.c
@@ -1,21 +0,0 @@
-#include "wm.h"
-
-void
-spawn(Arg *arg)
-{
- if(!fork()) {
- dup2(2, 1);
- setsid();
- execvp(((char **)arg->v)[0], (char **)arg->v);
- }
-}
-
-void
-quit(Arg *arg)
-{
- wl_display_terminate(server.display);
-}
-
-#define CONFIG(a,b,...) a cfg·##b = __VA_ARGS__
-#include "config.h"
-#undef CONFIG