summaryrefslogtreecommitdiff
path: root/Build/source/libs/pixman/pixtest.c
blob: f77fe27c9aa8722f3ca99928ce29987afa7a76a3 (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 version %s\n", argv[0], pixman_version_string ());
  return 0;
}