summaryrefslogtreecommitdiff
path: root/sway/commands/include.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2017-11-18 11:22:02 -0500
committerDrew DeVault <[email protected]>2017-11-18 11:22:02 -0500
commit733993a651c71f7e2198d505960d6bbd31e0e107 (patch)
treee51732c5872b624e73355f9e5b3f762101f3cd0d /sway/commands/include.c
parent0c8491f7d0c735299a25f0ab929f5d1e0866b929 (diff)
Move everything to sway/old/
Diffstat (limited to 'sway/commands/include.c')
-rw-r--r--sway/commands/include.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/sway/commands/include.c b/sway/commands/include.c
deleted file mode 100644
index 1ba9a10d..00000000
--- a/sway/commands/include.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "sway/commands.h"
-#include "sway/config.h"
-
-struct cmd_results *cmd_include(int argc, char **argv) {
- struct cmd_results *error = NULL;
- if ((error = checkarg(argc, "include", EXPECTED_EQUAL_TO, 1))) {
- return error;
- }
-
- if (!load_include_configs(argv[0], config)) {
- return cmd_results_new(CMD_INVALID, "include", "Failed to include sub configuration file: %s", argv[0]);
- }
-
- return cmd_results_new(CMD_SUCCESS, NULL, NULL);
-}