From d8200012fbf27e820c069fdbb570a64f46769454 Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Sun, 30 Sep 2018 13:58:35 +0300 Subject: Remove declarations that do no have definitions There is a couple of leftover header files/declarations, which were fronting implementations that are long gone. Let's get rid of them. --- include/sway/config.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include/sway/config.h') diff --git a/include/sway/config.h b/include/sway/config.h index af5c7a18..1c6e2ac4 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -449,8 +449,6 @@ void free_sway_variable(struct sway_variable *var); */ char *do_var_replacement(char *str); -struct cmd_results *check_security_config(); - int input_identifier_cmp(const void *item, const void *data); struct input_config *new_input_config(const char* identifier); -- cgit v1.2.3 From 1e70f7b19e92c20a691f2697b2c92ea8b13daba3 Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Sun, 30 Sep 2018 13:58:49 +0300 Subject: Turn funcs() into funcs(void) If they really do not take undefined number of arguments. --- include/sway/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/sway/config.h') diff --git a/include/sway/config.h b/include/sway/config.h index 1c6e2ac4..5e28c678 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -469,7 +469,7 @@ struct seat_config *copy_seat_config(struct seat_config *seat); void free_seat_config(struct seat_config *ic); -struct seat_attachment_config *seat_attachment_config_new(); +struct seat_attachment_config *seat_attachment_config_new(void); struct seat_attachment_config *seat_config_get_attachment( struct seat_config *seat_config, char *identifier); -- cgit v1.2.3