blob: 4aeb0821fe981535da8f19f2e305540ee533c8ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}
|