Declare cmd_gesture and create an empty body.

This commit is contained in:
grahnen 2019-01-16 00:23:41 +01:00 committed by Samuel Grahn
parent bccc14e01b
commit 79f3cf88a7
4 changed files with 17 additions and 1 deletions

14
sway/commands/gesture.c Normal file
View file

@ -0,0 +1,14 @@
#define _POSIX_C_SOURCE 200809L
#include <stdbool.h>
#include <string.h>
#include <strings.h>
#include "sway/commands.h"
#include "sway/config.h"
#include "sway/ipc-server.h"
#include "list.h"
#include "log.h"
#include "stringop.h"
struct cmd_results *cmd_gesture(int argc, char **argv) {
return NULL;
}