summaryrefslogtreecommitdiff
path: root/png.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2002-09-17 23:38:46 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2009-04-06 16:07:30 -0500
commit5ff38d3e1625888719c3c173168e4792211c0089 (patch)
tree54f91b8546aa0ffb5c7bf108dd057224ed405edc /png.c
parent865f4f073a692279c4aecbce7c9b9ed5a27372cf (diff)
downloadlibpng-5ff38d3e1625888719c3c173168e4792211c0089.tar.gz
Imported from libpng-1.2.5rc3.tarv1.2.5rc3
Diffstat (limited to 'png.c')
-rw-r--r--png.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/png.c b/png.c
index b103bfca4..5cfeb4546 100644
--- a/png.c
+++ b/png.c
@@ -1,7 +1,7 @@
/* png.c - location for general purpose libpng functions
*
- * libpng version 1.2.5rc2 - September 16, 2002
+ * libpng version 1.2.5rc3 - September 18, 2002
* Copyright (c) 1998-2002 Glenn Randers-Pehrson
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
@@ -13,14 +13,14 @@
#include "png.h"
/* Generate a compiler error if there is an old png.h in the search path. */
-typedef version_1_2_5rc2 Your_png_h_is_not_version_1_2_5rc2;
+typedef version_1_2_5rc3 Your_png_h_is_not_version_1_2_5rc3;
/* Version information for C files. This had better match the version
* string defined in png.h. */
#ifdef PNG_USE_GLOBAL_ARRAYS
/* png_libpng_ver was changed to a function in version 1.0.5c */
-const char png_libpng_ver[18] = "1.2.5rc2";
+const char png_libpng_ver[18] = "1.2.5rc3";
/* png_sig was changed to a function in version 1.0.5c */
/* Place to hold the signature string for a PNG file. */
@@ -671,7 +671,7 @@ png_charp PNGAPI
png_get_copyright(png_structp png_ptr)
{
if (png_ptr != NULL || png_ptr == NULL) /* silence compiler warning */
- return ((png_charp) "\n libpng version 1.2.5rc2 - September 16, 2002\n\
+ return ((png_charp) "\n libpng version 1.2.5rc3 - September 18, 2002\n\
Copyright (c) 1998-2002 Glenn Randers-Pehrson\n\
Copyright (c) 1996-1997 Andreas Dilger\n\
Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.\n");
@@ -689,8 +689,8 @@ png_get_libpng_ver(png_structp png_ptr)
{
/* Version of *.c files used when building libpng */
if(png_ptr != NULL) /* silence compiler warning about unused png_ptr */
- return((png_charp) "1.2.5rc2");
- return((png_charp) "1.2.5rc2");
+ return((png_charp) "1.2.5rc3");
+ return((png_charp) "1.2.5rc3");
}
png_charp PNGAPI