summaryrefslogtreecommitdiff
path: root/Build/source/libs/pixman/pixtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/pixman/pixtest.c')
-rw-r--r--Build/source/libs/pixman/pixtest.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/Build/source/libs/pixman/pixtest.c b/Build/source/libs/pixman/pixtest.c
new file mode 100644
index 00000000000..4aeb0821fe9
--- /dev/null
+++ b/Build/source/libs/pixman/pixtest.c
@@ -0,0 +1,14 @@
+/* pixtest.c: Basic test for libpixman
+ *
+ * Copyright (C) 2013 Peter Breitenlohner <tex-live@tug.org>
+ * You may freely use, modify and/or distribute this file.
+ */
+
+#include <stdio.h>
+#include <pixman.h>
+
+int main (int argc, char **argv)
+{
+ printf ("%s: using pixman %s\n", argv[0], pixman_version_string ());
+ return 0;
+}