diff options
author | Glenn Randers-Pehrson <glennrp at users.sourceforge.net> | 2010-02-08 06:18:54 -0600 |
---|---|---|
committer | Glenn Randers-Pehrson <glennrp at users.sourceforge.net> | 2010-02-08 06:18:54 -0600 |
commit | d08f1469cb887a0598086e203f9a5b9f6db803e6 (patch) | |
tree | 77c28007b514652d5b0b9572097468b56a9aa673 /pngwutil.c | |
parent | fa9633125dce864cef2bc293d7778b49bf9f8a58 (diff) | |
download | libpng-d08f1469cb887a0598086e203f9a5b9f6db803e6.tar.gz |
[previous] Removed PNGAPI declaration of png_calloc() and png_write_sig()
in 1ibpng-1.2.X, introduced by mistake in libpng-1.2.41.
Diffstat (limited to 'pngwutil.c')
-rw-r--r-- | pngwutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pngwutil.c b/pngwutil.c index ac8a8131e..72a57addf 100644 --- a/pngwutil.c +++ b/pngwutil.c @@ -59,7 +59,7 @@ png_save_uint_16(png_bytep buf, unsigned int i) * we should call png_set_sig_bytes() to tell libpng how many of the * bytes have already been written. */ -void PNGAPI +void /* PRIVATE */ png_write_sig(png_structp png_ptr) { png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10}; |