commands: add nop

This commit is contained in:
Ian Fan 2018-08-07 11:25:04 +01:00
parent 744724b3cb
commit c1af79532f
5 changed files with 12 additions and 0 deletions

5
sway/commands/nop.c Normal file
View file

@ -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);
}