blob: 8d501d24c00f87f1585408c24ab56eceeabdb85e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* 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: Compiled with pixman version %s; using %s\n",
argv[0], PIXMAN_VERSION_STRING, pixman_version_string ());
return 0;
}
|