summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/xf86vm.c
blob: 195e514d6cc4e4616bdb18739d4fe1a600b067df (plain)
1
2
3
4
5
6
7
8
#include <X11/Xlib.h>
#include <X11/extensions/xf86vmode.h>

int main(int argc, char **argv)
{
    XF86VidModeQueryExtension(0, 0, 0);
    return 0;
}