blob: 49c3b6cb364ec6fa9644d5e9964d7830fa666a4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdio.h>
#include <zlib.h>
#include <png.h>
int
main (int argc, char **argv)
{
printf ("Hello, this is progone,"
" using libpng %d (" PNG_LIBPNG_VER_STRING ") and zlib %s (" ZLIB_VERSION ")\n",
png_access_version_number (), zlibVersion ());
return 0;
}
|