blob: 4c55a087ef514a0483243d49d318bff47129ebb7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef XWAYLAND_SOCKETS_H
#define XWAYLAND_SOCKETS_H
#include <stdbool.h>
bool set_cloexec(int fd, bool cloexec);
void unlink_display_sockets(int display);
int open_display_sockets(int socks[2]);
#endif
|