mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
6 lines
133 B
C
6 lines
133 B
C
|
#include "sway/commands.h"
|
||
|
|
||
|
struct cmd_results *cmd_nop(int argc, char **argv) {
|
||
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||
|
}
|