x11: Bridge X11 CLIPBOARD selection to Wayland clients
diff --git a/clients/window.c b/clients/window.c
index 5931f7b..b031daa 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -1748,6 +1748,15 @@
 	return 0;
 }
 
+int
+input_receive_selection_data_to_fd(struct input *input,
+				   const char *mime_type, int fd)
+{
+	wl_data_offer_receive(input->selection_offer->offer, mime_type, fd);
+
+	return 0;
+}
+
 void
 window_move(struct window *window, struct input *input, uint32_t time)
 {