diff options
Diffstat (limited to 'config.tests/x11/xsync/xsync.cpp')
-rw-r--r-- | config.tests/x11/xsync/xsync.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config.tests/x11/xsync/xsync.cpp b/config.tests/x11/xsync/xsync.cpp new file mode 100644 index 0000000..a23fb08 --- /dev/null +++ b/config.tests/x11/xsync/xsync.cpp @@ -0,0 +1,11 @@ +#include <X11/Xlib.h> +#include <X11/Xutil.h> +#include <X11/extensions/sync.h> + +int main(int, char **) +{ + XSyncValue value; + (void*)&XSyncIntToValue; + (void*)&XSyncCreateCounter; + return 0; +} |