aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Carl Smedstad <carl.smedstad@protonmail.com>2022-11-07 00:45:00 +0100
committerLibravatar Simon Ser <contact@emersion.fr>2023-01-03 21:50:56 +0100
commite3257e646ce72a3f26cc5ca67f07389e497c816b (patch)
tree550d7d41f50fb419948b681a2ebe2ab9f53b77d0
parenttree/container: drop unnecessary check in container_get_siblings() (diff)
downloadsway-e3257e646ce72a3f26cc5ca67f07389e497c816b.tar.gz
sway-e3257e646ce72a3f26cc5ca67f07389e497c816b.tar.zst
sway-e3257e646ce72a3f26cc5ca67f07389e497c816b.zip
Remove duplicate declarations
-rw-r--r--include/sway/commands.h2
-rw-r--r--sway/ipc-server.c1
2 files changed, 0 insertions, 3 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 599347ef..123a7245 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -159,8 +159,6 @@ sway_cmd cmd_new_float;
159sway_cmd cmd_new_window; 159sway_cmd cmd_new_window;
160sway_cmd cmd_nop; 160sway_cmd cmd_nop;
161sway_cmd cmd_opacity; 161sway_cmd cmd_opacity;
162sway_cmd cmd_new_float;
163sway_cmd cmd_new_window;
164sway_cmd cmd_no_focus; 162sway_cmd cmd_no_focus;
165sway_cmd cmd_output; 163sway_cmd cmd_output;
166sway_cmd cmd_permit; 164sway_cmd cmd_permit;
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 00b01d7d..fddd8fab 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -56,7 +56,6 @@ struct ipc_client {
56 enum ipc_command_type pending_type; 56 enum ipc_command_type pending_type;
57}; 57};
58 58
59struct sockaddr_un *ipc_user_sockaddr(void);
60int ipc_handle_connection(int fd, uint32_t mask, void *data); 59int ipc_handle_connection(int fd, uint32_t mask, void *data);
61int ipc_client_handle_readable(int client_fd, uint32_t mask, void *data); 60int ipc_client_handle_readable(int client_fd, uint32_t mask, void *data);
62int ipc_client_handle_writable(int client_fd, uint32_t mask, void *data); 61int ipc_client_handle_writable(int client_fd, uint32_t mask, void *data);