diff options
Diffstat (limited to 'Build/source/libs/gd/gdtest.c')
-rw-r--r-- | Build/source/libs/gd/gdtest.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Build/source/libs/gd/gdtest.c b/Build/source/libs/gd/gdtest.c new file mode 100644 index 00000000000..0a02df04801 --- /dev/null +++ b/Build/source/libs/gd/gdtest.c @@ -0,0 +1,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; +} |