blob: 0a02df048011442dc7a413a924a7543892d4c2d6 (
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 <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;
}
|