summaryrefslogtreecommitdiffstats
path: root/src/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.h')
-rw-r--r--src/client.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client.h b/src/client.h
index 556b5fb3..48172051 100644
--- a/src/client.h
+++ b/src/client.h
@@ -11,7 +11,6 @@ struct client {
const char *protocol_name;
void (*kill)(struct client *c);
-
void *userdata;
};
@@ -24,4 +23,6 @@ void client_free(struct client *c);
* request destruction of the client */
void client_kill(struct client *c);
+char *client_list_to_string(struct core *c);
+
#endif