diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-01-14 10:59:36 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-01-14 10:59:36 +0000 |
commit | aa7bbf0e9b00afeeab12fb092b62976cf24fb439 (patch) | |
tree | c18d4ee9d969c2fca65036c7d9194d0961df61a3 /Build/source/libs/gd/gdtest.c | |
parent | 51f86fe156c11e441cc74238dc38b99f9576d1a9 (diff) |
libgd 2.1.1
git-svn-id: svn://tug.org/texlive/trunk@36054 c570f23f-e606-0410-a88d-b1316a301751
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; +} |