#include int main() { struct wl_display *disp = wl_display_connect(NULL); if (!disp) { return -1; } wl_display_disconnect(disp); return 0; }