Mike Klein | c1cc1d8 | 2020-09-11 11:11:33 -0500 | [diff] [blame] | 1 | // Copyright 2020 Google LLC. |
2 | // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. | ||||
3 | #include <png.h> | ||||
4 | |||||
5 | int main(int argc, char** argv) { | ||||
6 | return png_access_version_number() == 10637 | ||||
7 | ? 0 : 1; | ||||
8 | } |