| OLD | NEW |
| 1 | 1 |
| 2 /* pngdebug.h - Debugging macros for libpng, also used in pngtest.c | 2 /* pngdebug.h - Debugging macros for libpng, also used in pngtest.c |
| 3 * | 3 * |
| 4 * Last changed in libpng 1.6.8 [December 19, 2013] | 4 * Last changed in libpng 1.6.8 [December 19, 2013] |
| 5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson | 5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson |
| 6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) | 6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
| 7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | 7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
| 8 * | 8 * |
| 9 * This code is released under the libpng license. | 9 * This code is released under the libpng license. |
| 10 * For conditions of distribution and use, see the disclaimer | 10 * For conditions of distribution and use, see the disclaimer |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 #ifndef png_debug | 144 #ifndef png_debug |
| 145 # define png_debug(l, m) ((void)0) | 145 # define png_debug(l, m) ((void)0) |
| 146 #endif | 146 #endif |
| 147 #ifndef png_debug1 | 147 #ifndef png_debug1 |
| 148 # define png_debug1(l, m, p1) ((void)0) | 148 # define png_debug1(l, m, p1) ((void)0) |
| 149 #endif | 149 #endif |
| 150 #ifndef png_debug2 | 150 #ifndef png_debug2 |
| 151 # define png_debug2(l, m, p1, p2) ((void)0) | 151 # define png_debug2(l, m, p1, p2) ((void)0) |
| 152 #endif | 152 #endif |
| 153 #endif /* PNGDEBUG_H */ | 153 #endif /* PNGDEBUG_H */ |
| OLD | NEW |