blob: e3689f8b6ac4b57092c9ea9b916c1fc1369b4e5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* pixtest.c: Basic test for libpixman
*
* Copyright (C) 2015 Peter Breitenlohner <tex-live@tug.org>
* You may freely use, modify and/or distribute this file.
*/
#include <stdio.h>
#include <gd.h>
int main (int argc, char **argv)
{
printf ("%s: Compiled with libgd version %s; using %s\n",
argv[0], GD_VERSION_STRING, gdVersionString ());
return 0;
}
|