diff options
Diffstat (limited to 'sway/commands/nop.c')
-rw-r--r-- | sway/commands/nop.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/commands/nop.c b/sway/commands/nop.c new file mode 100644 index 00000000..c12fe15a --- /dev/null +++ b/sway/commands/nop.c @@ -0,0 +1,5 @@ +#include "sway/commands.h" + +struct cmd_results *cmd_nop(int argc, char **argv) { + return cmd_results_new(CMD_SUCCESS, NULL, NULL); +} |