summaryrefslogtreecommitdiffstats
path: root/config.tests/x11/xlib/xlib.cpp
blob: 8d25bf57c058faa536e67c7a4dc7474b7f6e1e22 (plain)
1
2
3
4
5
6
7
8
9
#include <X11/Xlib.h>

int main(int, char **)
{
    Display *d = XOpenDisplay(NULL);
    XCloseDisplay(d);
    return 0;
}